Skip to content

Commit

Permalink
0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Feb 6, 2023
1 parent 97da42d commit 2a4e5e0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"]

[package]
name = "sea-orm"
version = "0.11.0-rc.2"
version = "0.11.0"
authors = ["Chris Tsang <chris.2y3@outlook.com>"]
edition = "2021"
description = "🐚 An async & dynamic ORM for Rust"
Expand Down Expand Up @@ -33,7 +33,7 @@ log = { version = "0.4", default-features = false }
tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
rust_decimal = { version = "1", default-features = false, optional = true }
bigdecimal = { version = "0.3", default-features = false, optional = true }
sea-orm-macros = { version = "0.11.0-rc.2", path = "sea-orm-macros", default-features = false, optional = true }
sea-orm-macros = { version = "0.11.0", path = "sea-orm-macros", default-features = false, optional = true }
sea-query = { version = "0.28.3", features = ["thread-safe"] }
sea-query-binder = { version = "0.3", default-features = false, optional = true }
sea-strum = { version = "0.23", default-features = false, features = ["derive", "sea-orm"] }
Expand Down
4 changes: 2 additions & 2 deletions sea-orm-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "sea-orm-cli"
version = "0.11.0-rc.2"
version = "0.11.0"
authors = [
"Chris Tsang <chris.2y3@outlook.com>",
"Billy Chan <ccw.billy.123@gmail.com>",
Expand Down Expand Up @@ -37,7 +37,7 @@ required-features = ["cli", "codegen"]
clap = { version = "3.2", default-features = false, features = ["std", "env", "derive"], optional = true }
dotenvy = { version = "0.15", default-features = false, optional = true }
async-std = { version = "1.9", default-features = false, features = ["attributes", "tokio1"], optional = true }
sea-orm-codegen = { version = "=0.11.0-rc.2", path = "../sea-orm-codegen", default-features = false, optional = true }
sea-orm-codegen = { version = "=0.11.0", path = "../sea-orm-codegen", default-features = false, optional = true }
sea-schema = { version = "0.11" }
sqlx = { version = "0.6", default-features = false, features = ["mysql", "postgres"], optional = true }
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] }
Expand Down
2 changes: 1 addition & 1 deletion sea-orm-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sea-orm-codegen"
version = "0.11.0-rc.2"
version = "0.11.0"
authors = ["Billy Chan <ccw.billy.123@gmail.com>"]
edition = "2021"
description = "Code Generator for SeaORM"
Expand Down
2 changes: 1 addition & 1 deletion sea-orm-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sea-orm-macros"
version = "0.11.0-rc.2"
version = "0.11.0"
authors = [ "Billy Chan <ccw.billy.123@gmail.com>" ]
edition = "2021"
description = "Derive macros for SeaORM"
Expand Down
6 changes: 3 additions & 3 deletions sea-orm-migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "sea-orm-migration"
version = "0.11.0-rc.2"
version = "0.11.0"
authors = ["Billy Chan <ccw.billy.123@gmail.com>"]
edition = "2021"
description = "Migration utility for SeaORM"
Expand All @@ -23,8 +23,8 @@ path = "src/lib.rs"
async-trait = { version = "0.1", default-features = false }
clap = { version = "3.2", default-features = false, features = ["std", "env", "derive"], optional = true }
dotenvy = { version = "0.15", default-features = false, optional = true }
sea-orm = { version = "0.11.0-rc.2", path = "../", default-features = false, features = ["macros"] }
sea-orm-cli = { version = "0.11.0-rc.2", path = "../sea-orm-cli", default-features = false, optional = true }
sea-orm = { version = "0.11.0", path = "../", default-features = false, features = ["macros"] }
sea-orm-cli = { version = "0.11.0", path = "../sea-orm-cli", default-features = false, optional = true }
sea-schema = { version = "0.11" }
tracing = { version = "0.1", default-features = false, features = ["log"] }
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] }
Expand Down

0 comments on commit 2a4e5e0

Please sign in to comment.