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

Commit

Permalink
Release v0.14.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
nwronski committed May 31, 2016
1 parent 602d276 commit 7632bff
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 19 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
All notable changes to this project will be documented in this file.

## [Unreleased][unreleased]

## [v0.14.4] - 2016-05-31
### Fixed
- Allow spaces between a function name and the argument list
``` sql
Expand Down Expand Up @@ -548,7 +550,8 @@ part of table names, column names, aliases, etc... This also addresses issues th
### Added
- First working version of sqlite-parser

[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.14.3...HEAD
[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.14.4...HEAD
[v0.14.4]: https://github.com/codeschool/sqlite-parser/compare/v0.14.3...v0.14.4
[v0.14.3]: https://github.com/codeschool/sqlite-parser/compare/v0.14.2...v0.14.3
[v0.14.2]: https://github.com/codeschool/sqlite-parser/compare/v0.14.1...v0.14.2
[v0.14.1]: https://github.com/codeschool/sqlite-parser/compare/v0.14.0...v0.14.1
Expand Down
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "sqlite-parser",
"description": "JavaScript implentation of SQLite 3 query parser",
"author": "Code School (http://codeschool.com)",
"version": "0.14.3",
"version": "0.14.4",
"contributors": [
"Nick Wronski <[email protected]>"
],
Expand Down Expand Up @@ -33,29 +33,29 @@
"postversion": "git push && git push --tags"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"bluebird": "^3.3.4",
"babel-core": "^6.9.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"bluebird": "^3.4.0",
"chai": "^3.5.0",
"codemirror": "^5.12.0",
"grunt": "^0.4.5",
"codemirror": "^5.15.2",
"grunt": "^1.0.1",
"grunt-banner": "^0.6.0",
"grunt-browserify": "^5.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.0",
"grunt-contrib-connect": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.0",
"grunt-contrib-uglify": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.1",
"grunt-contrib-uglify": "^1.0.1",
"pegjs": "git+https://github.com/nwronski/pegjs.git#master",
"grunt-contrib-watch": "^0.6.1",
"grunt-replace": "^0.11.0",
"grunt-shell": "^1.2.1",
"load-grunt-tasks": "^3.4.1",
"lodash": "^4.6.1",
"mocha": "^2.4.5",
"grunt-contrib-watch": "^1.0.0",
"grunt-replace": "^1.0.1",
"grunt-shell": "^1.3.0",
"load-grunt-tasks": "^3.5.0",
"lodash": "^4.13.1",
"mocha": "^2.5.3",
"prettyjson": "^1.1.3"
},
"dependencies": {}
Expand Down

0 comments on commit 7632bff

Please sign in to comment.