From 2794410a082975b0a59d09ad08cd8692c031598f Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Mon, 9 May 2022 21:02:53 +0800 Subject: [PATCH] Update sea-schema --- CHANGELOG.md | 3 +++ sea-orm-cli/Cargo.toml | 2 +- sea-orm-migration/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eac15cd2..34d62afa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Enhancements * Add max_connections option to CLI https://github.com/SeaQL/sea-orm/pull/670 +### Breaking changes +* `sea_schema::migration::prelude` should be replaced by `sea_orm_migration::prelude` + ## 0.7.1 - 2022-03-26 * Fix sea-orm-cli error diff --git a/sea-orm-cli/Cargo.toml b/sea-orm-cli/Cargo.toml index 6bfb65a9..145c1fdb 100644 --- a/sea-orm-cli/Cargo.toml +++ b/sea-orm-cli/Cargo.toml @@ -33,7 +33,7 @@ clap = { version = "^2.33.3" } dotenv = { version = "^0.15" } async-std = { version = "^1.9", features = [ "attributes", "tokio1" ] } sea-orm-codegen = { version = "^0.7.0", path = "../sea-orm-codegen", optional = true } -sea-schema = { git = "https://github.com/SeaQL/sea-schema", branch = "master" } +sea-schema = { version = "^0.8.0" } sqlx = { version = "^0.5", default-features = false, features = [ "mysql", "postgres" ], optional = true } tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing = { version = "0.1" } diff --git a/sea-orm-migration/Cargo.toml b/sea-orm-migration/Cargo.toml index 5b4ed006..3f7eb9f1 100644 --- a/sea-orm-migration/Cargo.toml +++ b/sea-orm-migration/Cargo.toml @@ -24,7 +24,7 @@ clap = { version = "^2.33" } dotenv = { version = "^0.15" } sea-orm = { path = "../", default-features = false, features = ["macros"] } sea-orm-cli = { path = "../sea-orm-cli", default-features = false } -sea-schema = { git = "https://github.com/SeaQL/sea-schema", branch = "master" } +sea-schema = { version = "^0.8.0" } tracing = { version = "0.1", features = ["log"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] }