@@ -23,6 +23,7 @@ Please provide feedback on:
23
23
* Is there any need for a Java 7 JSqlParser build, or can we move on to at least Java 8? (https://github.com/JSQLParser/JSqlParser/issues/814 )
24
24
25
25
## News
26
+ * Released version ** 3.0** of JSqlParser
26
27
* The array parsing is the default behaviour. Square bracket quotation has to be enabled using
27
28
a parser flag (** CCJSqlParser.withSquareBracketQuotation** ).
28
29
* due to an API change the version will be 3.0
@@ -63,22 +64,8 @@ To help JSqlParser's development you are encouraged to provide
63
64
64
65
Also I would like to know about needed examples or documentation stuff.
65
66
66
- ## Extensions in the latest SNAPSHOT version 3.0
67
-
68
- * support for array constructs using square brackets. This collides with square bracket
69
- quotation of SqlServer. The parser has now a flag to enable this quotation again (** CCJSqlParser.withSquareBracketQuotation** ).
70
- * support for ** update table1 inner join table2 ...** (API change)
71
- * support for ** declare** statement
72
- * allow empty double quotes
73
- * allow ** year** , ** month** ... as column data type for ** create table**
74
- * allow ** duplicate** as object name
75
- * make it JDK 11 buildable
76
- * switched to minimum JDK 8
77
- * avoid buffer copy of input data if a normal String input is used
78
- * allow ** limit** and ** offset** as keywords in specific places
79
- * DIV operator
80
- * improved performance for SQLCondition production
81
- * support for full text search (MATCH..AGAINST)
67
+ ## Extensions in the latest SNAPSHOT version 3.1
68
+
82
69
83
70
## Extensions of JSqlParser releases
84
71
@@ -146,7 +133,7 @@ And this is the dependency declaration in your pom:
146
133
<dependency >
147
134
<groupId >com.github.jsqlparser</groupId >
148
135
<artifactId >jsqlparser</artifactId >
149
- <version >2.1 </version >
136
+ <version >3.0 </version >
150
137
</dependency >
151
138
```
152
139
0 commit comments