From 512904d2f0d048fe42b1f75ed42b025eb8c9fc4e Mon Sep 17 00:00:00 2001 From: Nick Wronski Date: Mon, 11 Jul 2016 11:22:58 -0400 Subject: [PATCH] Release v0.14.5. --- CHANGELOG.md | 13 ++++++++++++- package.json | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 084141c..39f36ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. ## [Unreleased][unreleased] +## [v0.14.5] - 2016-07-11 +### Fixed +- Fix alternate not equal operator `<>` + + ``` sql + SELECT * + FROM hats + WHERE quantity <> 1 + ``` + ## [v0.14.4] - 2016-05-31 ### Fixed - Allow spaces between a function name and the argument list @@ -551,7 +561,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.4...HEAD +[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.14.5...HEAD +[v0.14.5]: https://github.com/codeschool/sqlite-parser/compare/v0.14.4...v0.14.5 [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 diff --git a/package.json b/package.json index 9980a0d..3dc5bd0 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.4", + "version": "0.14.5", "contributors": [ "Nick Wronski " ],