From 007ac1dd0c7f28ab6711e10391d7169082fd63dc Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Sat, 27 Jan 2024 13:55:04 +0000 Subject: [PATCH] Prepare for 0.31 --- Cargo.toml | 2 +- sea-query-binder/Cargo.toml | 2 +- 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, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e0543d4d3..83082f021 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "sea-query-derive"] [package] name = "sea-query" -version = "0.30.7" +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-diesel/Cargo.toml b/sea-query-diesel/Cargo.toml index 88605e08a..4f0c5d85b 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.30", path = "..", default-features = false } +sea-query = { version = "0.31", 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 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-rbatis/Cargo.toml b/sea-query-rbatis/Cargo.toml index c53f9f3c9..168edc030 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.30", path = "..", default-features = false, features = ["thread-safe"] } +sea-query = { version = "0.31", 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 597d230ac..ea0a136e1 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.30", default-features = false, features = ["bundled"] } [features]