diff --git a/CHANGELOG.md b/CHANGELOG.md index be36a92a0..c94afe305 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,7 +23,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Bug Fixes * Fixed bytea literal syntax for Postgres https://github.com/SeaQL/sea-query/pull/666 -* Fix issues with semantics of parenthesis removal https://github.com/SeaQL/sea-query/pull/675 +* Fixed issues with semantics of parenthesis removal https://github.com/SeaQL/sea-query/pull/675 ## 0.30.0 - 2023-07-20 diff --git a/Cargo.toml b/Cargo.toml index e57623474..89472b33c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "sea-query-derive"] [package] name = "sea-query" -version = "0.30.1" +version = "0.31.0" authors = [ "Chris Tsang ", "Billy Chan ", diff --git a/sea-query-binder/Cargo.toml b/sea-query-binder/Cargo.toml index f530b25a1..ca121a2a2 100644 --- a/sea-query-binder/Cargo.toml +++ b/sea-query-binder/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.60" [lib] [dependencies] -sea-query = { version = "0.30", path = "..", default-features = false, features = ["thread-safe"] } +sea-query = { version = "0.31", path = "..", default-features = false, features = ["thread-safe"] } sqlx = { version = "0.7", default-features = false, optional = true } serde_json = { version = "1", default-features = false, optional = true, features = ["std"] } chrono = { version = "0.4", default-features = false, optional = true, features = ["clock"] } diff --git a/sea-query-postgres/Cargo.toml b/sea-query-postgres/Cargo.toml index ed42f6596..fe1c057c4 100644 --- a/sea-query-postgres/Cargo.toml +++ b/sea-query-postgres/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.60" [lib] [dependencies] -sea-query = { version = "0.30", path = "..", default-features = false } +sea-query = { version = "0.31", path = "..", default-features = false } postgres-types = { version = "0.2", default-features = false } bytes = { version = "1", default-features = false } rust_decimal = { version = "1", default-features = false, optional = true } diff --git a/sea-query-rusqlite/Cargo.toml b/sea-query-rusqlite/Cargo.toml index caa0d0df1..736fdb974 100644 --- a/sea-query-rusqlite/Cargo.toml +++ b/sea-query-rusqlite/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.60" [lib] [dependencies] -sea-query = { version = "0.30", path = "..", default-features = false } +sea-query = { version = "0.31", path = "..", default-features = false } rusqlite = { version = "0.29", default-features = false, features = ["bundled"] } [features]