Skip to content

Commit 0c82be5

Browse files
committed
Follow-up to the recent release (CHANGELOG and the bench crate)
1 parent 1946791 commit 0c82be5

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@ Given that the parser produces a typed AST, any changes to the AST will technica
88
## [Unreleased]
99
Check https://github.com/andygrove/sqlparser-rs/commits/master for undocumented changes.
1010

11+
### Changed
12+
13+
### Added
14+
15+
### Fixed
16+
17+
18+
## [0.5.1] - 2020-06-26
19+
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:
20+
21+
sqlparser = "= 0.5.0"
22+
23+
1124
### Changed
1225
- **`Parser::parse_sql` now accepts a `&str` instead of `String` (#182)** - thanks @Dandandan!
1326
- Change `Ident` (previously a simple `String`) to store the parsed (unquoted) `value` of the identifier and the `quote_style` separately (#143) - thanks @apparebit!

sqlparser_bench/Cargo.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ version = "0.1.0"
44
authors = ["Dandandan <[email protected]>"]
55
edition = "2018"
66

7-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8-
97
[dependencies]
10-
sqlparser = { path = "../", version = "0.5.1-alpha-0" }
8+
sqlparser = { path = "../" }
119

1210
[dev-dependencies]
13-
criterion = {version = "0.3"}
11+
criterion = "0.3"
1412

1513
[[bench]]
1614
name = "sqlparser_bench"

0 commit comments

Comments
 (0)