diff --git a/CHANGELOG.md b/CHANGELOG.md index dc775ba7..adb24870 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,19 @@ Given that the parser produces a typed AST, any changes to the AST will technica ## [Unreleased] Check https://github.com/andygrove/sqlparser-rs/commits/master for undocumented changes. +### Changed + +### Added + +### Fixed + + +## [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: + + sqlparser = "= 0.5.0" + + ### Changed - **`Parser::parse_sql` now accepts a `&str` instead of `String` (#182)** - thanks @Dandandan! - Change `Ident` (previously a simple `String`) to store the parsed (unquoted) `value` of the identifier and the `quote_style` separately (#143) - thanks @apparebit! diff --git a/sqlparser_bench/Cargo.toml b/sqlparser_bench/Cargo.toml index 43ea1191..d98ff156 100644 --- a/sqlparser_bench/Cargo.toml +++ b/sqlparser_bench/Cargo.toml @@ -4,13 +4,11 @@ version = "0.1.0" authors = ["Dandandan "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] -sqlparser = { path = "../", version = "0.5.1-alpha-0" } +sqlparser = { path = "../" } [dev-dependencies] -criterion = {version = "0.3"} +criterion = "0.3" [[bench]] name = "sqlparser_bench"