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

Commit 512904d

Browse files
committed
Release v0.14.5.
1 parent 68f893f commit 512904d

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file.
33

44
## [Unreleased][unreleased]
55

6+
## [v0.14.5] - 2016-07-11
7+
### Fixed
8+
- Fix alternate not equal operator `<>`
9+
10+
``` sql
11+
SELECT *
12+
FROM hats
13+
WHERE quantity <> 1
14+
```
15+
616
## [v0.14.4] - 2016-05-31
717
### Fixed
818
- 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
551561
### Added
552562
- First working version of sqlite-parser
553563

554-
[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.14.4...HEAD
564+
[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.14.5...HEAD
565+
[v0.14.5]: https://github.com/codeschool/sqlite-parser/compare/v0.14.4...v0.14.5
555566
[v0.14.4]: https://github.com/codeschool/sqlite-parser/compare/v0.14.3...v0.14.4
556567
[v0.14.3]: https://github.com/codeschool/sqlite-parser/compare/v0.14.2...v0.14.3
557568
[v0.14.2]: https://github.com/codeschool/sqlite-parser/compare/v0.14.1...v0.14.2

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

0 commit comments

Comments
 (0)