diff --git a/Cargo.toml b/Cargo.toml index 71b1a03f..c56dd38f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "sea-query-derive"] [package] name = "sea-query" -version = "0.31.0-rc.9" +version = "0.31.0" authors = [ "Chris Tsang ", "Billy Chan ", diff --git a/sea-query-attr/Cargo.toml b/sea-query-attr/Cargo.toml index aecd5042..2cdf6cb9 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.8", path = ".." } +sea-query = { version = "0.31.0", path = ".." } strum = { version = "0.25", features = ["derive"] } diff --git a/sea-query-binder/Cargo.toml b/sea-query-binder/Cargo.toml index e37da3bb..e112fd58 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.8", path = "..", default-features = false, features = ["thread-safe"] } +sea-query = { version = "0.31.0", 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 0af7724a..2b54f475 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.8", path = ".." } +sea-query = { version = "0.31.0", path = ".." } strum = { version = "0.25", features = ["derive"] } [features] diff --git a/sea-query-diesel/Cargo.toml b/sea-query-diesel/Cargo.toml index 4b661aa4..7d1e3614 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.8", path = "..", default-features = false } +sea-query = { version = "0.31.0", 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 131199e6..c37c4763 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.8", path = "..", default-features = false } +sea-query = { version = "0.31.0", 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 f1bb28db..d5d2e318 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.8", path = "..", default-features = false, features = ["thread-safe"] } +sea-query = { version = "0.31.0", 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 2e1180a4..fdd85cc1 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.8", path = "..", default-features = false } +sea-query = { version = "0.31.0", path = "..", default-features = false } rusqlite = { version = "0.31" } [features]