From 05a39fa85b712c61a813c963bd017b76aeed1225 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Wed, 31 Jan 2024 17:51:17 +0800 Subject: [PATCH] 0.31.0-rc.1 --- Cargo.toml | 2 +- sea-query-binder/Cargo.toml | 4 ++-- sea-query-diesel/Cargo.toml | 2 +- sea-query-postgres/Cargo.toml | 2 +- sea-query-rbatis/Cargo.toml | 2 +- sea-query-rusqlite/Cargo.toml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 83082f021..765bf5718 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.1" authors = [ "Chris Tsang ", "Billy Chan ", diff --git a/sea-query-binder/Cargo.toml b/sea-query-binder/Cargo.toml index 1e8a488f6..7ca5080c0 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.1", 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..a5ce6d323 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.1", 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..30a7778ad 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.1", 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..9d393cc6e 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.1", 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..c79d35c05 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.1", path = "..", default-features = false } rusqlite = { version = "0.30", default-features = false, features = ["bundled"] } [features]