Skip to content

Commit

Permalink
release 0.11.0 (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
xxchan committed Jan 14, 2023
1 parent 2fb7e36 commit 34358b6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.0] - 2023-01-14

This release contains some minor fixes.

* fix: use `Vec<Vec<String>>` for external engine (JDBC)
* fix: Use `lines()` instead of `split('\n')` in `parse_inner`. So the behavior can be correct on Windows.
* fix: parse DML with `returning` as a query
* A minor **breaking change**: `update_test_file` takes `&mut Runner` instead of its ownnership.

## [0.10.0] - 2022-12-15

- Improve the ability to unparse and update the test files. Mainly add `update_record_with_output` and `update_test_file` to the library.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = ["sqllogictest", "sqllogictest-bin", "examples/*", "tests"]

[workspace.package]
version = "0.10.0"
version = "0.11.0"
edition = "2021"
homepage = "https://github.com/risinglightdb/sqllogictest-rs"
keywords = ["sql", "database", "parser", "cli"]
Expand Down
2 changes: 1 addition & 1 deletion sqllogictest-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ rand = "0.8"
rust_decimal = { version = "1.7.0", features = ["tokio-pg"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqllogictest = { path = "../sqllogictest", version = "0.10" }
sqllogictest = { path = "../sqllogictest", version = "0.11" }
tempfile = "3"
thiserror = "1"
tokio = { version = "1", features = [
Expand Down

0 comments on commit 34358b6

Please sign in to comment.