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

Commit 1f27448

Browse files
committed
Release v0.12.0
1 parent dd25059 commit 1f27448

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ syntax error is produced if an AST cannot be generated.
1313

1414
## Install
1515

16+
**IMPORTANT: If you want intelligent error messages for syntax errors, then use the `v0.11.0` release. If you want the fastest possible version of the parser, with the tradeoff of poor syntax error feedback, use the `v0.12.0` release.**
17+
1618
```
1719
npm install sqlite-parser
1820
```

demo/js/sqlite-parser-demo.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sqlite-parser-min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sqlite-parser.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* sqlite-parser - v0.12.0-beta.1
2+
* sqlite-parser - v0.12.0
33
* @copyright 2015 Code School (http://codeschool.com)
44
* @author Nick Wronski <[email protected]>
55
*/
@@ -17,7 +17,7 @@ function sqliteParser(source, callback) {
1717
}
1818

1919
sqliteParser['NAME'] = 'sqlite-parser';
20-
sqliteParser['VERSION'] = '0.12.0-beta.1';
20+
sqliteParser['VERSION'] = '0.12.0';
2121

2222
module.exports = sqliteParser;
2323

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "sqlite-parser",
33
"description": "JavaScript implentation of SQLite 3 query parser",
44
"author": "Code School (http://codeschool.com)",
5-
"version": "0.12.0-beta.1",
5+
"version": "0.12.0",
66
"contributors": [
77
"Nick Wronski <[email protected]>"
88
],

0 commit comments

Comments
 (0)