diff --git a/CHANGELOG.md b/CHANGELOG.md index 25d52147..b044d434 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -443,11 +443,11 @@ Entity::update_many() ### Upgrades * Upgrade `heck` dependency in `sea-orm-macros` and `sea-orm-codegen` to 0.4 https://github.com/SeaQL/sea-orm/pull/1520, https://github.com/SeaQL/sea-orm/pull/1544 -* Upgrade `strum` to 0.24 -* Upgrade `sea-query` to 0.29 https://github.com/SeaQL/sea-orm/pull/1562 -* Upgrade `sea-query-binder` to 0.4 https://github.com/SeaQL/sea-orm/pull/1562 -* Upgrade `sea-schema` to 0.12 https://github.com/SeaQL/sea-orm/pull/1562 -* Upgrade `clap` to 4.3 https://github.com/SeaQL/sea-orm/pull/1468 +* Upgrade `strum` to 0.25 https://github.com/SeaQL/sea-orm/pull/1752 +* Upgrade `sea-query` to `0.29` https://github.com/SeaQL/sea-orm/pull/1562 +* Upgrade `sea-query-binder` to `0.4` https://github.com/SeaQL/sea-orm/pull/1562 +* Upgrade `sea-schema` to `0.12` https://github.com/SeaQL/sea-orm/pull/1562 +* Upgrade `clap` to `4.3` https://github.com/SeaQL/sea-orm/pull/1468 * Replace `bae` with `sea-bae` https://github.com/SeaQL/sea-orm/pull/1739 ### Bug Fixes diff --git a/Cargo.toml b/Cargo.toml index 037de27a..bc04951e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ bigdecimal = { version = "0.3", default-features = false, optional = true } sea-orm-macros = { version = "0.12.0-rc.4", path = "sea-orm-macros", default-features = false, features = ["strum"] } sea-query = { version = "0.29.0-rc.2", features = ["thread-safe", "hashable-value"] } sea-query-binder = { version = "0.4.0-rc.2", default-features = false, optional = true } -strum = { version = "0.24", default-features = false } +strum = { version = "0.25", default-features = false } serde = { version = "1.0", default-features = false } serde_json = { version = "1.0", default-features = false, optional = true } sqlx = { version = "0.6", default-features = false, optional = true }