Skip to content

Commit fa4fd82

Browse files
committed
Release v2.0.0
1 parent e6af7da commit fa4fd82

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
v2.0.0 (2014-10-23)
2+
-------------------
3+
- Simplified AST; node per operator replaced with just ComparisonNode.
4+
- Simplified support for custom operators; the RSQLNodesFactory is no longer needed.
5+
- The RSQLParserException changed to inherit from the RuntimeException.
6+
- Added withSelector/withArguments/withChildren methods to the AST nodes.
7+
- Tests improved.
8+
19
v2.0.M1 (2014-03-20)
210
-------------------
311
- JavaCC grammar, all the code and tests completely rewritten.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Released versions are available in The Central Repository. Just add this artifac
130130
<dependency>
131131
<groupId>cz.jirutka.rsql</groupId>
132132
<artifactId>rsql-parser</artifactId>
133-
<version>2.0.M1</version>
133+
<version>2.0.0</version>
134134
</dependency>
135135
```
136136

pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<groupId>cz.jirutka.rsql</groupId>
1717
<artifactId>rsql-parser</artifactId>
18-
<version>2.0-SNAPSHOT</version>
18+
<version>2.0.0</version>
1919
<packaging>jar</packaging>
2020

2121
<name>RSQL-parser</name>
@@ -52,6 +52,11 @@
5252
<url>https://travis-ci.org/jirutka/rsql-parser</url>
5353
</ciManagement>
5454

55+
<issueManagement>
56+
<system>github</system>
57+
<url>https://github.com/jirutka/rsql-parser/issues</url>
58+
</issueManagement>
59+
5560

5661
<!--//////////////////// DEPENDENCIES ////////////////////-->
5762

0 commit comments

Comments
 (0)