Release 0.6.0 (#232)

This commit is contained in:
Daniël Heres 2020-07-20 18:14:46 +02:00 committed by GitHub
parent 583f22b929
commit 3a42b69b89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View file

@ -11,11 +11,15 @@ Check https://github.com/ballista-compute/sqlparser-rs/commits/main for undocume
### Changed
### Added
- Support SQLite's `CREATE TABLE (...) WITHOUT ROWID` (#208) - thanks @mashuai!
- Support SQLite's `CREATE VIRTUAL TABLE` (#209) - thanks @mashuai!
### Fixed
## [0.6.0] - 2020-07-20
### Added
- Support SQLite's `CREATE TABLE (...) WITHOUT ROWID` (#208) - thanks @mashuai!
- Support SQLite's `CREATE VIRTUAL TABLE` (#209) - thanks @mashuai!
- Support BigQuery `ASSERT` statement (#226)
## [0.5.1] - 2020-06-26
This release should have been called `0.6`, as it introduces multiple incompatible changes to the API. If you don't want to upgrade yet, you can revert to the previous version by changing your `Cargo.toml` to:

View file

@ -1,7 +1,7 @@
[package]
name = "sqlparser"
description = "Extensible SQL Lexer and Parser with support for ANSI SQL:2011"
version = "0.5.2-alpha.0"
version = "0.6.0"
authors = ["Andy Grove <andygrove73@gmail.com>"]
homepage = "https://github.com/ballista-compute/sqlparser-rs"
documentation = "https://docs.rs/sqlparser/"