diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b8dbb69..19c92f88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.24.2 + +* [#220](https://github.com/Peternator7/strum/pull/220). Add support for PHF in `EnumString` (opt-in runtime + performance improvements for large enums as `#[strum(use_phf)]`, requires `phf` feature and increases MSRV to `1.46`) + * [#224](https://github.com/Peternator7/strum/pull/224) tweaked the algorithm. + +* Reverted [#217](https://github.com/peternator7/strum/pull/217) because it was disruptive and non-trivial to work around + if you hit it. + ## ~~0.24.1~~ (Yanked becase #217 was more "breaking" than I wanted) * [#220](https://github.com/Peternator7/strum/pull/220). Add support for PHF in `EnumString` (opt-in runtime diff --git a/strum_macros/Cargo.toml b/strum_macros/Cargo.toml index b2119b69..491d0923 100644 --- a/strum_macros/Cargo.toml +++ b/strum_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "strum_macros" -version = "0.24.1" +version = "0.24.2" edition = "2018" authors = ["Peter Glotfelty "] license = "MIT"