Skip to content
This repository was archived by the owner on Jul 15, 2021. It is now read-only.

Commit f44b86c

Browse files
committed
version bump to v0.2.3
1 parent 6ea3be4 commit f44b86c

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55

66
[unreleased]: https://github.com/codeschool/sqlite-parser
77

8+
## [v0.2.3] - 2015-06-24
9+
### Fixed
10+
- allow for nested parenthesis
11+
- allow multiple binary expressions and concatenation operators within parenthesis
12+
13+
``` sql
14+
SELECT *
15+
FROM hats
16+
WHERE
17+
hat OR (shirt AND (shoes OR wig) AND pants)
18+
```
19+
820
## [v0.2.2] - 2015-06-24
921
### Fixed
1022
- The `CREATE VIRTUAL TABLE` statement previously only worked with expression arguments. Fixed by checking for a column name followed by a type definition or column constraint before assuming the type is an expression list, if these things are found, then treat the arguments as a set of source definitions as in a creation statement for a table.
@@ -97,7 +109,8 @@ All notable changes to this project will be documented in this file.
97109
### Added
98110
- First working version of sqlite-parser
99111

100-
[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.2.2...HEAD
112+
[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.2.3...HEAD
113+
[v0.2.3]: https://github.com/codeschool/sqlite-parser/compare/v0.2.2...v0.2.3
101114
[v0.2.2]: https://github.com/codeschool/sqlite-parser/compare/v0.2.1...v0.2.2
102115
[v0.2.1]: https://github.com/codeschool/sqlite-parser/compare/v0.2.0...v0.2.1
103116
[v0.2.0]: https://github.com/codeschool/sqlite-parser/compare/v0.1.1...v0.2.0

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function sqliteParser(source) {
1616
});
1717
}
1818
sqliteParser['NAME'] = "sqlite-parser";
19-
sqliteParser['VERSION'] = "0.2.2";
19+
sqliteParser['VERSION'] = "0.2.3";
2020

2121
/**!
2222
* sqlite-parser

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sqlite-parser",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"main": "lib/index.js",
55
"private": true,
66
"author": "Code School",

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function sqliteParser(source) {
1616
});
1717
}
1818
sqliteParser['NAME'] = "sqlite-parser";
19-
sqliteParser['VERSION'] = "0.2.2";
19+
sqliteParser['VERSION'] = "0.2.3";
2020

2121
/**!
2222
* sqlite-parser

0 commit comments

Comments
 (0)