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

Commit d1d6164

Browse files
committed
Release v0.14.2.
1 parent 5092cdd commit d1d6164

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33

44
## [Unreleased][unreleased]
55

6+
## [v0.14.2] - 2016-03-24
7+
### Fixed
8+
- Minified bundle was missing from `dist/` folder after running `grunt release`
9+
- This would have caused the parser to not work as an installed npm module since the `package.json` `main` property points to the minified bundle
10+
611
## [v0.14.1] - 2016-03-23
712
### Fixed
813
- Fixed broken Grunt tasks (e.g. `grunt release`) in Windows
@@ -533,7 +538,8 @@ part of table names, column names, aliases, etc... This also addresses issues th
533538
### Added
534539
- First working version of sqlite-parser
535540

536-
[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.14.1...HEAD
541+
[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.14.2...HEAD
542+
[v0.14.2]: https://github.com/codeschool/sqlite-parser/compare/v0.14.1...v0.14.2
537543
[v0.14.1]: https://github.com/codeschool/sqlite-parser/compare/v0.14.0...v0.14.1
538544
[v0.14.0]: https://github.com/codeschool/sqlite-parser/compare/v0.11.3...v0.14.0
539545
[v0.11.3]: https://github.com/codeschool/sqlite-parser/compare/v0.11.2...v0.11.3

package.json

+1-2
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.14.1",
5+
"version": "0.14.2",
66
"contributors": [
77
"Nick Wronski <[email protected]>"
88
],
@@ -26,7 +26,6 @@
2626
"url": "https://github.com/codeschool/sqlite-parser/issues"
2727
},
2828
"scripts": {
29-
"test": "grunt test",
3029
"prepublish": "grunt release"
3130
},
3231
"devDependencies": {

0 commit comments

Comments
 (0)