Upgrade strum to v0.25 (#1752)

* Upgrade `strum` to v0.25

* CHANGELOG

---------

Co-authored-by: Chris Tsang <chris.2y3@outlook.com>
This commit is contained in:
Billy Chan 2023-07-12 19:05:58 +08:00 committed by GitHub
parent a55162e3b8
commit 288f73de21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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 }