Skip to content

Commit

Permalink
Follow-up to the recent release (CHANGELOG and the bench crate)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickolay committed Jun 26, 2020
1 parent 1946791 commit 0c82be5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down
6 changes: 2 additions & 4 deletions sqlparser_bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 0c82be5

Please sign in to comment.