Follow-up to the recent release (CHANGELOG and the bench crate)

This commit is contained in:
Nickolay Ponomarev 2020-06-26 14:55:55 +03:00
parent 1946791302
commit 0c82be5c3b
2 changed files with 15 additions and 4 deletions

View file

@ -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!

View file

@ -4,13 +4,11 @@ version = "0.1.0"
authors = ["Dandandan <danielheres@gmail.com>"]
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"