diff --git a/Cargo.toml b/Cargo.toml index 83082f021..4c743a0db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "sea-query-derive"] [package] name = "sea-query" -version = "0.31.0" +version = "0.31.0-rc.4" authors = [ "Chris Tsang ", "Billy Chan ", diff --git a/sea-query-binder/Cargo.toml b/sea-query-binder/Cargo.toml index 1e8a488f6..0e3515beb 100644 --- a/sea-query-binder/Cargo.toml +++ b/sea-query-binder/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "sea-query-binder" -version = "0.6.0" +version = "0.6.0-rc.1" authors = [ "Valentin Tolmer ", "Ivan Krivosheev " ] edition = "2021" description = "Driver library for using SeaQuery with SQLx" @@ -17,7 +17,7 @@ rust-version = "1.60" [lib] [dependencies] -sea-query = { version = "0.31", path = "..", default-features = false, features = ["thread-safe"] } +sea-query = { version = "0.31.0-rc.4", 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-diesel/Cargo.toml b/sea-query-diesel/Cargo.toml index 4f0c5d85b..ea09ae10b 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", path = "..", default-features = false } +sea-query = { version = "0.31.0-rc.4", 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 fe1c057c4..123ba68b6 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", path = "..", default-features = false } +sea-query = { version = "0.31.0-rc.4", 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 168edc030..7e8e8e1c2 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", path = "..", default-features = false, features = ["thread-safe"] } +sea-query = { version = "0.31.0-rc.4", 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 ea0a136e1..ca96770bb 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", path = "..", default-features = false } +sea-query = { version = "0.31.0-rc.4", path = "..", default-features = false } rusqlite = { version = "0.30", default-features = false, features = ["bundled"] } [features]