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

Commit 616cb01

Browse files
committed
updated CHANGELOG.md for v0.6.0. refs #2
1 parent 697f2b4 commit 616cb01

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
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.6.0] - 2015-07-01
7+
### Changed
8+
- updated grammar to remove all dependence on `modifier` clause as it was being used as a catch-all clause for stray parts of statements
9+
- created `defer` clause
10+
- normalized format for common clauses and nodes across different statement types
11+
- removed `range` variant that was part of `BETWEEN` expressions
12+
- renamed several clauses to match the SQL keywords and/or SQLite manual descriptions used to define them
13+
- for `WITHOUT ROWID` in `CREATE TABLE`: `modifier` -> `optimization`
14+
- for `IF NOT EXISTS` in all places: `modifier`: `condition`
15+
616
## [v0.5.1] - 2015-06-30
717
### Fixed
818
- accidentally repeating first `description` in the error thrown from the `smartError()` method of `Tracer`
@@ -70,7 +80,7 @@ All notable changes to this project will be documented in this file.
7080

7181
- New specs: Basic Drop Table, Basic Drop Trigger, Basic Function, Basic Subquery, Basic Union, Create Check 1, Create Check 2, Create Foreign Key 1, Create Foreign Key 2, Create Primary Key 1, Create Table Alt Syntax, Expression Like, Expression Table 1, Expression Unary 1, Function Mixed Args, Insert Into Default, Join Types 1, Join Types 2, Select Parts 1, Select Qualified Table 1, Transaction Rollback
7282

73-
# Changed
83+
### Changed
7484
- allow multiple expressions for `GROUP BY` clause
7585

7686
``` sql
@@ -201,7 +211,8 @@ All notable changes to this project will be documented in this file.
201211
### Added
202212
- First working version of sqlite-parser
203213

204-
[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.5.1...HEAD
214+
[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.6.0...HEAD
215+
[v0.6.0]: https://github.com/codeschool/sqlite-parser/compare/v0.5.1...v0.6.0
205216
[v0.5.1]: https://github.com/codeschool/sqlite-parser/compare/v0.5.0...v0.5.1
206217
[v0.5.0]: https://github.com/codeschool/sqlite-parser/compare/v0.4.1...v0.5.0
207218
[v0.4.1]: https://github.com/codeschool/sqlite-parser/compare/v0.4.0...v0.4.1

0 commit comments

Comments
 (0)