From 7632bff835d93da10c02c1cec372b26613b1f89f Mon Sep 17 00:00:00 2001 From: Nick Wronski Date: Tue, 31 May 2016 15:12:39 -0400 Subject: [PATCH] Release v0.14.4. --- CHANGELOG.md | 5 ++++- package.json | 36 ++++++++++++++++++------------------ 2 files changed, 22 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 221a13e..049c088 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/package.json b/package.json index 510c6fd..9980a0d 100644 --- a/package.json +++ b/package.json @@ -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 " ], @@ -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": {}