diff --git a/examples/actix3_example/Cargo.toml b/examples/actix3_example/Cargo.toml index 0f93c608..3a5a2e0c 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.1" # sea-orm version +version = "^0.9.2" # 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 65d6d489..0a5f1f1c 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.1" # sea-orm version +version = "^0.9.2" # sea-orm version diff --git a/examples/actix3_example/migration/Cargo.toml b/examples/actix3_example/migration/Cargo.toml index 2b5d4705..5f1a47bf 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.1" # sea-orm-migration version +version = "^0.9.2" # 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 8e5e38e3..286070ed 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.1" # sea-orm version +version = "^0.9.2" # 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 65d6d489..0a5f1f1c 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.1" # sea-orm version +version = "^0.9.2" # sea-orm version diff --git a/examples/actix_example/migration/Cargo.toml b/examples/actix_example/migration/Cargo.toml index 364fcb2b..9157a618 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.1" # sea-orm-migration version +version = "^0.9.2" # 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 a2511ed7..2929751e 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.1" # sea-orm version +version = "^0.9.2" # 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 65d6d489..0a5f1f1c 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.1" # sea-orm version +version = "^0.9.2" # sea-orm version diff --git a/examples/axum_example/migration/Cargo.toml b/examples/axum_example/migration/Cargo.toml index c8ebd9eb..469790f4 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.1" # sea-orm-migration version +version = "^0.9.2" # 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 13c72e0b..6438486d 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.1" # sea-orm version +version = "^0.9.2" # 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 ace561fd..0f6f4dc3 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.1" # sea-orm version +version = "^0.9.2" # sea-orm version diff --git a/examples/graphql_example/migration/Cargo.toml b/examples/graphql_example/migration/Cargo.toml index 60625c03..22d322f6 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.1" # sea-orm-migration version +version = "^0.9.2" # 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 481f56e5..2a2df9c3 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.1" # sea-orm version +version = "^0.9.2" # 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 65d6d489..0a5f1f1c 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.1" # sea-orm version +version = "^0.9.2" # sea-orm version diff --git a/examples/jsonrpsee_example/migration/Cargo.toml b/examples/jsonrpsee_example/migration/Cargo.toml index ff931881..77f2017f 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.1" # sea-orm-migration version +version = "^0.9.2" # 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 3a97d578..a7cab5ec 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.1" # sea-orm version +version = "^0.9.2" # 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 65d6d489..0a5f1f1c 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.1" # sea-orm version +version = "^0.9.2" # sea-orm version diff --git a/examples/poem_example/migration/Cargo.toml b/examples/poem_example/migration/Cargo.toml index ff931881..77f2017f 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.1" # sea-orm-migration version +version = "^0.9.2" # 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 53d61182..d787539e 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.1" # sea-orm version +version = "^0.9.2" # 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 00ffd04f..3fbb8dd6 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.1" # sea-orm version +version = "^0.9.2" # sea-orm version diff --git a/examples/rocket_example/migration/Cargo.toml b/examples/rocket_example/migration/Cargo.toml index 1bbb8e03..dd7f38c4 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.1" # sea-orm-migration version +version = "^0.9.2" # 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 9dba449f..68e46f0a 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.1" # sea-orm version +version = "^0.9.2" # 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 65d6d489..0a5f1f1c 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.1" # sea-orm version +version = "^0.9.2" # sea-orm version diff --git a/examples/salvo_example/migration/Cargo.toml b/examples/salvo_example/migration/Cargo.toml index ff931881..77f2017f 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.1" # sea-orm-migration version +version = "^0.9.2" # 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 ab9b24bd..2b22fda5 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.1" # sea-orm version +version = "^0.9.2" # 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 65d6d489..0a5f1f1c 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.1" # sea-orm version +version = "^0.9.2" # sea-orm version diff --git a/examples/tonic_example/migration/Cargo.toml b/examples/tonic_example/migration/Cargo.toml index c243488c..c962f083 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.1" # sea-orm-migration version +version = "^0.9.2" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-rustls",