diff --git a/Cargo.toml b/Cargo.toml index 398cb3bb..277a2a68 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"] [package] name = "sea-orm" -version = "0.9.2" +version = "0.10.0" authors = ["Chris Tsang "] edition = "2021" description = "🐚 An async & dynamic ORM for Rust" @@ -32,7 +32,7 @@ futures-util = { version = "^0.3" } log = { version = "^0.4" } tracing = { version = "^0.1", features = ["log"] } rust_decimal = { version = "^1", optional = true } -sea-orm-macros = { version = "^0.9.2", path = "sea-orm-macros", optional = true } +sea-orm-macros = { version = "^0.10.0", path = "sea-orm-macros", optional = true } sea-query = { version = "^0.26.3", features = ["thread-safe"] } sea-strum = { version = "^0.23", features = ["derive", "sea-orm"] } serde = { version = "^1.0", features = ["derive"] } diff --git a/examples/actix3_example/Cargo.toml b/examples/actix3_example/Cargo.toml index 3a5a2e0c..d08d1dcd 100644 --- a/examples/actix3_example/Cargo.toml +++ b/examples/actix3_example/Cargo.toml @@ -25,7 +25,7 @@ migration = { path = "migration" } [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version features = [ "debug-print", "runtime-async-std-native-tls", diff --git a/examples/actix3_example/entity/Cargo.toml b/examples/actix3_example/entity/Cargo.toml index 0a5f1f1c..681105b9 100644 --- a/examples/actix3_example/entity/Cargo.toml +++ b/examples/actix3_example/entity/Cargo.toml @@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version diff --git a/examples/actix3_example/migration/Cargo.toml b/examples/actix3_example/migration/Cargo.toml index 5f1a47bf..1b051dfa 100644 --- a/examples/actix3_example/migration/Cargo.toml +++ b/examples/actix3_example/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "^0.9.2" # sea-orm-migration version +version = "^0.10.0" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-async-std-native-tls", diff --git a/examples/actix_example/Cargo.toml b/examples/actix_example/Cargo.toml index 286070ed..8be0a188 100644 --- a/examples/actix_example/Cargo.toml +++ b/examples/actix_example/Cargo.toml @@ -25,7 +25,7 @@ migration = { path = "migration" } [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version features = [ "debug-print", "runtime-actix-native-tls", diff --git a/examples/actix_example/entity/Cargo.toml b/examples/actix_example/entity/Cargo.toml index 0a5f1f1c..681105b9 100644 --- a/examples/actix_example/entity/Cargo.toml +++ b/examples/actix_example/entity/Cargo.toml @@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version diff --git a/examples/actix_example/migration/Cargo.toml b/examples/actix_example/migration/Cargo.toml index 9157a618..cf0594eb 100644 --- a/examples/actix_example/migration/Cargo.toml +++ b/examples/actix_example/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "^0.9.2" # sea-orm-migration version +version = "^0.10.0" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-actix-native-tls", diff --git a/examples/axum_example/Cargo.toml b/examples/axum_example/Cargo.toml index 2929751e..43478ad0 100644 --- a/examples/axum_example/Cargo.toml +++ b/examples/axum_example/Cargo.toml @@ -26,7 +26,7 @@ migration = { path = "migration" } [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version features = [ "debug-print", "runtime-tokio-native-tls", diff --git a/examples/axum_example/entity/Cargo.toml b/examples/axum_example/entity/Cargo.toml index 0a5f1f1c..681105b9 100644 --- a/examples/axum_example/entity/Cargo.toml +++ b/examples/axum_example/entity/Cargo.toml @@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version diff --git a/examples/axum_example/migration/Cargo.toml b/examples/axum_example/migration/Cargo.toml index 469790f4..bcd55e7e 100644 --- a/examples/axum_example/migration/Cargo.toml +++ b/examples/axum_example/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "^0.9.2" # sea-orm-migration version +version = "^0.10.0" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-native-tls", diff --git a/examples/graphql_example/Cargo.toml b/examples/graphql_example/Cargo.toml index 6438486d..107de341 100644 --- a/examples/graphql_example/Cargo.toml +++ b/examples/graphql_example/Cargo.toml @@ -19,7 +19,7 @@ migration = { path = "migration" } [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version features = [ "runtime-tokio-native-tls", # "sqlx-postgres", diff --git a/examples/graphql_example/entity/Cargo.toml b/examples/graphql_example/entity/Cargo.toml index 0f6f4dc3..ded791c7 100644 --- a/examples/graphql_example/entity/Cargo.toml +++ b/examples/graphql_example/entity/Cargo.toml @@ -16,4 +16,4 @@ version = "^4.0.6" [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version diff --git a/examples/graphql_example/migration/Cargo.toml b/examples/graphql_example/migration/Cargo.toml index 22d322f6..4d42e621 100644 --- a/examples/graphql_example/migration/Cargo.toml +++ b/examples/graphql_example/migration/Cargo.toml @@ -14,7 +14,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "^0.9.2" # sea-orm-migration version +version = "^0.10.0" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-native-tls", diff --git a/examples/jsonrpsee_example/Cargo.toml b/examples/jsonrpsee_example/Cargo.toml index 2a2df9c3..d507a5c6 100644 --- a/examples/jsonrpsee_example/Cargo.toml +++ b/examples/jsonrpsee_example/Cargo.toml @@ -23,7 +23,7 @@ simplelog = "*" [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version features = [ "debug-print", "runtime-tokio-native-tls", diff --git a/examples/jsonrpsee_example/entity/Cargo.toml b/examples/jsonrpsee_example/entity/Cargo.toml index 0a5f1f1c..681105b9 100644 --- a/examples/jsonrpsee_example/entity/Cargo.toml +++ b/examples/jsonrpsee_example/entity/Cargo.toml @@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version diff --git a/examples/jsonrpsee_example/migration/Cargo.toml b/examples/jsonrpsee_example/migration/Cargo.toml index 77f2017f..a2721991 100644 --- a/examples/jsonrpsee_example/migration/Cargo.toml +++ b/examples/jsonrpsee_example/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "^0.9.2" # sea-orm-migration version +version = "^0.10.0" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-native-tls", diff --git a/examples/poem_example/Cargo.toml b/examples/poem_example/Cargo.toml index a7cab5ec..0139a5da 100644 --- a/examples/poem_example/Cargo.toml +++ b/examples/poem_example/Cargo.toml @@ -19,7 +19,7 @@ migration = { path = "migration" } [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version features = [ "debug-print", "runtime-tokio-native-tls", diff --git a/examples/poem_example/entity/Cargo.toml b/examples/poem_example/entity/Cargo.toml index 0a5f1f1c..681105b9 100644 --- a/examples/poem_example/entity/Cargo.toml +++ b/examples/poem_example/entity/Cargo.toml @@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version diff --git a/examples/poem_example/migration/Cargo.toml b/examples/poem_example/migration/Cargo.toml index 77f2017f..a2721991 100644 --- a/examples/poem_example/migration/Cargo.toml +++ b/examples/poem_example/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "^0.9.2" # sea-orm-migration version +version = "^0.10.0" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-native-tls", diff --git a/examples/rocket_example/Cargo.toml b/examples/rocket_example/Cargo.toml index d787539e..e16a7aeb 100644 --- a/examples/rocket_example/Cargo.toml +++ b/examples/rocket_example/Cargo.toml @@ -29,7 +29,7 @@ path = "../../sea-orm-rocket/lib" # remove this line in your own project and use [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version features = [ "runtime-tokio-native-tls", "sqlx-postgres", diff --git a/examples/rocket_example/entity/Cargo.toml b/examples/rocket_example/entity/Cargo.toml index 3fbb8dd6..be891cd4 100644 --- a/examples/rocket_example/entity/Cargo.toml +++ b/examples/rocket_example/entity/Cargo.toml @@ -15,4 +15,4 @@ rocket = { version = "0.5.0-rc.1", features = [ [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version diff --git a/examples/rocket_example/migration/Cargo.toml b/examples/rocket_example/migration/Cargo.toml index dd7f38c4..b8251d20 100644 --- a/examples/rocket_example/migration/Cargo.toml +++ b/examples/rocket_example/migration/Cargo.toml @@ -14,7 +14,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "^0.9.2" # sea-orm-migration version +version = "^0.10.0" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-native-tls", diff --git a/examples/salvo_example/Cargo.toml b/examples/salvo_example/Cargo.toml index 68e46f0a..a1028a77 100644 --- a/examples/salvo_example/Cargo.toml +++ b/examples/salvo_example/Cargo.toml @@ -19,7 +19,7 @@ migration = { path = "migration" } [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version features = [ "debug-print", "runtime-tokio-native-tls", diff --git a/examples/salvo_example/entity/Cargo.toml b/examples/salvo_example/entity/Cargo.toml index 0a5f1f1c..681105b9 100644 --- a/examples/salvo_example/entity/Cargo.toml +++ b/examples/salvo_example/entity/Cargo.toml @@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version diff --git a/examples/salvo_example/migration/Cargo.toml b/examples/salvo_example/migration/Cargo.toml index 77f2017f..a2721991 100644 --- a/examples/salvo_example/migration/Cargo.toml +++ b/examples/salvo_example/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "^0.9.2" # sea-orm-migration version +version = "^0.10.0" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-native-tls", diff --git a/examples/tonic_example/Cargo.toml b/examples/tonic_example/Cargo.toml index 2b22fda5..4bb3346f 100644 --- a/examples/tonic_example/Cargo.toml +++ b/examples/tonic_example/Cargo.toml @@ -19,7 +19,7 @@ serde = "1.0" [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version features = [ "debug-print", "runtime-tokio-rustls", diff --git a/examples/tonic_example/entity/Cargo.toml b/examples/tonic_example/entity/Cargo.toml index 0a5f1f1c..681105b9 100644 --- a/examples/tonic_example/entity/Cargo.toml +++ b/examples/tonic_example/entity/Cargo.toml @@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "^0.9.2" # sea-orm version +version = "^0.10.0" # sea-orm version diff --git a/examples/tonic_example/migration/Cargo.toml b/examples/tonic_example/migration/Cargo.toml index c962f083..e1d5a2ab 100644 --- a/examples/tonic_example/migration/Cargo.toml +++ b/examples/tonic_example/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "^0.9.2" # sea-orm-migration version +version = "^0.10.0" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-rustls", diff --git a/sea-orm-cli/Cargo.toml b/sea-orm-cli/Cargo.toml index c5563d42..9520da95 100644 --- a/sea-orm-cli/Cargo.toml +++ b/sea-orm-cli/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "sea-orm-cli" -version = "0.9.2" +version = "0.10.0" authors = [ "Billy Chan " ] edition = "2021" description = "Command line utility for SeaORM" @@ -33,7 +33,7 @@ required-features = ["codegen"] clap = { version = "^3.2", features = ["env", "derive"] } dotenv = { version = "^0.15" } async-std = { version = "^1.9", features = [ "attributes", "tokio1" ] } -sea-orm-codegen = { version = "^0.9.2", path = "../sea-orm-codegen", optional = true } +sea-orm-codegen = { version = "^0.10.0", path = "../sea-orm-codegen", optional = true } sea-schema = { version = "^0.9.3" } sqlx = { version = "^0.6", default-features = false, features = [ "mysql", "postgres" ], optional = true } tracing-subscriber = { version = "0.3", features = ["env-filter"] } diff --git a/sea-orm-codegen/Cargo.toml b/sea-orm-codegen/Cargo.toml index 0891a57b..ce0a0923 100644 --- a/sea-orm-codegen/Cargo.toml +++ b/sea-orm-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sea-orm-codegen" -version = "0.9.2" +version = "0.10.0" 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 5f1118a0..47abdb77 100644 --- a/sea-orm-macros/Cargo.toml +++ b/sea-orm-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sea-orm-macros" -version = "0.9.2" +version = "0.10.0" 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 260c16ac..f0f8c5d4 100644 --- a/sea-orm-migration/Cargo.toml +++ b/sea-orm-migration/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "sea-orm-migration" -version = "0.9.2" +version = "0.10.0" authors = [ "Billy Chan " ] edition = "2021" description = "Migration utility for SeaORM" @@ -22,8 +22,8 @@ path = "src/lib.rs" async-trait = { version = "^0.1" } clap = { version = "^3.2", features = ["env", "derive"] } dotenv = { version = "^0.15" } -sea-orm = { version = "^0.9.2", path = "../", default-features = false, features = ["macros"] } -sea-orm-cli = { version = "^0.9.2", path = "../sea-orm-cli", default-features = false } +sea-orm = { version = "^0.10.0", path = "../", default-features = false, features = ["macros"] } +sea-orm-cli = { version = "^0.10.0", path = "../sea-orm-cli", default-features = false } sea-schema = { version = "^0.9.3" } tracing = { version = "0.1", features = ["log"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] }