diff --git a/CHANGELOG.md b/CHANGELOG.md index 237b6343..b20f09fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). + `sea-query`/`0.31.0-rc.5`: 2024-04-14 + `sea-query`/`0.31.0-rc.6`: 2024-05-03 + `sea-query`/`0.31.0-rc.7`: 2024-06-02 ++ `sea-query`/`0.31.0-rc.8`: 2024-06-19 + `sea-query-binder`/`0.6.0-rc.1`: 2024-01-31 + `sea-query-binder`/`0.6.0-rc.2`: 2024-04-14 + `sea-query-rusqlite`/`0.6.0-rc.1`: 2024-02-19 diff --git a/Cargo.toml b/Cargo.toml index 49a5097e..37ead8f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "sea-query-derive"] [package] name = "sea-query" -version = "0.31.0-rc.7" +version = "0.31.0-rc.8" authors = [ "Chris Tsang ", "Billy Chan ", diff --git a/sea-query-attr/Cargo.toml b/sea-query-attr/Cargo.toml index 6ffc406a..aecd5042 100644 --- a/sea-query-attr/Cargo.toml +++ b/sea-query-attr/Cargo.toml @@ -22,5 +22,5 @@ darling = { version = "0.14", default-features = false } [dev-dependencies] trybuild = "1.0" -sea-query = { version = "0.31.0-rc.4", path = ".." } +sea-query = { version = "0.31.0-rc.8", path = ".." } strum = { version = "0.25", features = ["derive"] } diff --git a/sea-query-binder/Cargo.toml b/sea-query-binder/Cargo.toml index e52cda4a..4c168cd1 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.31.0-rc.4", path = "..", default-features = false, features = ["thread-safe"] } +sea-query = { version = "0.31.0-rc.8", path = "..", default-features = false, features = ["thread-safe"] } sqlx = { version = "<0.7.5", 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-derive/Cargo.toml b/sea-query-derive/Cargo.toml index ce06ff54..0af7724a 100644 --- a/sea-query-derive/Cargo.toml +++ b/sea-query-derive/Cargo.toml @@ -23,7 +23,7 @@ thiserror = { version = "1.0", default-features = false } [dev-dependencies] trybuild = "1.0" -sea-query = { version = "0.31.0-rc.4", path = ".." } +sea-query = { version = "0.31.0-rc.8", path = ".." } strum = { version = "0.25", features = ["derive"] } [features] diff --git a/sea-query-diesel/Cargo.toml b/sea-query-diesel/Cargo.toml index ea09ae10..5e9abe26 100644 --- a/sea-query-diesel/Cargo.toml +++ b/sea-query-diesel/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.60" [lib] [dependencies] -sea-query = { version = "0.31.0-rc.4", path = "..", default-features = false } +sea-query = { version = "0.31.0-rc.8", path = "..", default-features = false } diesel = { version = "2.1.1", features = [ "i-implement-a-third-party-backend-and-opt-into-breaking-changes", ] } diff --git a/sea-query-postgres/Cargo.toml b/sea-query-postgres/Cargo.toml index 123ba68b..131199e6 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.31.0-rc.4", path = "..", default-features = false } +sea-query = { version = "0.31.0-rc.8", 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-rbatis/Cargo.toml b/sea-query-rbatis/Cargo.toml index 7e8e8e1c..39cb0ec9 100644 --- a/sea-query-rbatis/Cargo.toml +++ b/sea-query-rbatis/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.60" [lib] [dependencies] -sea-query = { version = "0.31.0-rc.4", path = "..", default-features = false, features = ["thread-safe"] } +sea-query = { version = "0.31.0-rc.8", path = "..", default-features = false, features = ["thread-safe"] } rbs = { version = "4.3.1" } 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-rusqlite/Cargo.toml b/sea-query-rusqlite/Cargo.toml index c500b11f..2e1180a4 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.31.0-rc.4", path = "..", default-features = false } +sea-query = { version = "0.31.0-rc.8", path = "..", default-features = false } rusqlite = { version = "0.31" } [features]