@@ -13,6 +13,7 @@ JSqlParser is dual licensed under **LGPL V2.1** and **Apache Software License, V
1313
1414## News
1515
16+ * Version ** 0.9.5** released.
1617* Please test the actual ** 0.9.5-SNAPSHOT** . It includes some grammar refactorings which eventually results in parse tree changes.
1718* Version ** 0.9.4** released.
1819* Please test the actual SNAPSHOT, if there are problems using the extended identifier token.
@@ -37,38 +38,7 @@ To help JSqlParsers development you are encouraged to provide
3738
3839Also I would like to know about needed examples or documentation stuff.
3940
40- ## Extensions in the latest SNAPSHOT version 0.9.5
41-
42- * introduced first support for boolean valued column conditions
43-
44- ~~~
45- SELECT * FROM mytable WHERE mytable.boolValue;
46- ~~~
47-
48- * improved parenthesis parsing performance within expressions (#215 )
49- * support for ** ALTER TABLE mytable ADD CONSTRAING name PRIMARY KEY (col)**
50- * support for ** INSERT LOW_PRIORITY INTO**
51- * support for ** ORDER BY** and ** LIMIT** in ** UPDATE** and ** DELETE** statements
52-
53- ~~~
54- UPDATE tablename SET ... ORDER BY col;
55- UPDATE tablename SET ... ORDER BY col LIMIT 10;
56- UPDATE table1 A SET ... LIMIT 10;
57- DELETE FROM tablename LIMIT 5;
58- DELETE FROM tablename ORDER BY col;
59- DELETE FROM tablename ORDER BY col LIMIT 10;
60- ~~~
61-
62- * support for ** INSERT ... ON DUPLICATE KEY UPDATE**
63- * improved support for ** ALTER TABLE** statements
64- * first Oracle hint support for ** SELECT** statements
65- * first ** ALTER TABLE FOREIGN KEY** support
66- * first ** MERGE** support
67- * first version of escaped single quotes support
68-
69- ~~~
70- select '\''
71- ~~~
41+ ## Extensions in the latest SNAPSHOT version 0.9.6
7242
7343## Extensions of JSqlParser releases
7444
@@ -109,7 +79,7 @@ And this is the dependency declaration in your pom:
10979<dependency >
11080 <groupId >com.github.jsqlparser</groupId >
11181 <artifactId >jsqlparser</artifactId >
112- <version >0.9.4 </version >
82+ <version >0.9.5 </version >
11383</dependency >
11484```
11585
0 commit comments