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

Commit 6a724ae

Browse files
committed
version bump to v0.10.2. refs #3
1 parent 4db12e7 commit 6a724ae

File tree

7 files changed

+14
-11
lines changed

7 files changed

+14
-11
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22
All notable changes to this project will be documented in this file.
33

44
## [Unreleased][unreleased]
5+
6+
## [v0.10.2] - 2015-07-09
57
### Changed
68
- lots of clean up to organize tests by category, split out tests to different files and directories by type, and created `mocha.opts` to run tests directory recursively.
9+
- force update README for npm website
710

811
## [v0.10.1] - 2015-07-09
912
### Changed
@@ -426,8 +429,8 @@ fixed value format for direction key in PRIMARY KEY table contrainsts cleaned up
426429
### Added
427430
- First working version of sqlite-parser
428431

429-
[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.10.1...HEAD
430-
[v0.10.1]: https://github.com/codeschool/sqlite-parser/compare/v0.9.8...v0.10.1
432+
[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.10.2...HEAD
433+
[v0.10.2]: https://github.com/codeschool/sqlite-parser/compare/v0.9.8...v0.10.2
431434
[v0.9.8]: https://github.com/codeschool/sqlite-parser/compare/v0.9.1...v0.9.8
432435
[v0.9.1]: https://github.com/codeschool/sqlite-parser/compare/v0.8.0...v0.9.1
433436
[v0.8.0]: https://github.com/codeschool/sqlite-parser/compare/v0.6.0...v0.8.0

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ FROM
8080
{
8181
"type": "identifier",
8282
"variant": "table",
83-
"name": "BeeHive",
83+
"name": "beehive",
8484
"alias": null,
8585
"index": null
8686
}
@@ -90,7 +90,7 @@ FROM
9090
"result": [
9191
{
9292
"type": "function",
93-
"name": "MIN",
93+
"name": "min",
9494
"distinct": false,
9595
"args": [
9696
{
@@ -103,7 +103,7 @@ FROM
103103
},
104104
{
105105
"type": "function",
106-
"name": "MAX",
106+
"name": "max",
107107
"distinct": false,
108108
"args": [
109109
{
@@ -119,7 +119,7 @@ FROM
119119
"all": false,
120120
"order": null,
121121
"limit": null,
122-
"with": []
122+
"with": null
123123
}
124124
]
125125
}

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: 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.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616

1717
sqliteParser['NAME'] = 'sqlite-parser';
18-
sqliteParser['VERSION'] = '0.10.1';
18+
sqliteParser['VERSION'] = '0.10.2';
1919

2020
module.exports = root.sqliteParser = sqliteParser;
2121
})(typeof self === 'object' ? self : global, require('./lib/parser'));

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
}
1414

1515
sqliteParser['NAME'] = 'sqlite-parser';
16-
sqliteParser['VERSION'] = '0.10.1';
16+
sqliteParser['VERSION'] = '0.10.2';
1717

1818
module.exports = root.sqliteParser = sqliteParser;
1919
})(typeof self === 'object' ? self : global, require('./lib/parser'));

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.10.1",
5+
"version": "0.10.2",
66
"contributors": [
77
"Nick Wronski <[email protected]>"
88
],

0 commit comments

Comments
 (0)