From 9e36c1103e459ef86a5047dc67c235f8380b5f3f Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Sat, 4 Feb 2023 16:10:21 +0800 Subject: [PATCH] 0.11.0-rc.2 --- Cargo.toml | 4 ++-- sea-orm-cli/Cargo.toml | 4 ++-- sea-orm-codegen/Cargo.toml | 2 +- sea-orm-macros/Cargo.toml | 2 +- sea-orm-migration/Cargo.toml | 6 +++--- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b41237d33..56ac71843 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"] [package] name = "sea-orm" -version = "0.11.0-rc.1" +version = "0.11.0-rc.2" authors = ["Chris Tsang "] edition = "2021" description = "🐚 An async & dynamic ORM for Rust" @@ -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.1", path = "sea-orm-macros", default-features = false, optional = true } +sea-orm-macros = { version = "0.11.0-rc.2", 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"] } diff --git a/sea-orm-cli/Cargo.toml b/sea-orm-cli/Cargo.toml index 4070e03fe..e9fcadc16 100644 --- a/sea-orm-cli/Cargo.toml +++ b/sea-orm-cli/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "sea-orm-cli" -version = "0.11.0-rc.1" +version = "0.11.0-rc.2" authors = [ "Chris Tsang ", "Billy Chan ", @@ -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.1", path = "../sea-orm-codegen", default-features = false, optional = true } +sea-orm-codegen = { version = "=0.11.0-rc.2", 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"] } diff --git a/sea-orm-codegen/Cargo.toml b/sea-orm-codegen/Cargo.toml index 0abf176a7..99b030e5a 100644 --- a/sea-orm-codegen/Cargo.toml +++ b/sea-orm-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sea-orm-codegen" -version = "0.11.0-rc.1" +version = "0.11.0-rc.2" authors = ["Billy Chan "] edition = "2021" description = "Code Generator for SeaORM" diff --git a/sea-orm-macros/Cargo.toml b/sea-orm-macros/Cargo.toml index d2f655bf7..b198e9603 100644 --- a/sea-orm-macros/Cargo.toml +++ b/sea-orm-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sea-orm-macros" -version = "0.11.0-rc.1" +version = "0.11.0-rc.2" authors = [ "Billy Chan " ] edition = "2021" description = "Derive macros for SeaORM" diff --git a/sea-orm-migration/Cargo.toml b/sea-orm-migration/Cargo.toml index c2cca2f54..d4656cea1 100644 --- a/sea-orm-migration/Cargo.toml +++ b/sea-orm-migration/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "sea-orm-migration" -version = "0.11.0-rc.1" +version = "0.11.0-rc.2" authors = ["Billy Chan "] edition = "2021" description = "Migration utility for SeaORM" @@ -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.1", path = "../", default-features = false, features = ["macros"] } -sea-orm-cli = { version = "0.11.0-rc.1", path = "../sea-orm-cli", 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-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"] }