diff --git a/CHANGELOG.md b/CHANGELOG.md index 050bf40d..0dac7110 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,13 @@ # Changelog -## Unreleased +## 0.24.1 * [#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. +* [#217](https://github.com/Peternator7/strum/pull/217): Automatically implement `TryFrom` in `FromRepr`. This is + technically a breaking change, but the fix is to just remove the manual implementation of TryFrom so it shouldn't + be more than a minor inconvenience. ## 0.24.0 diff --git a/strum/Cargo.toml b/strum/Cargo.toml index ca4dd8f3..4472ca8d 100644 --- a/strum/Cargo.toml +++ b/strum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "strum" -version = "0.24.0" +version = "0.24.1" edition = "2018" authors = ["Peter Glotfelty "] license = "MIT" diff --git a/strum_macros/Cargo.toml b/strum_macros/Cargo.toml index 5dfd3700..b2119b69 100644 --- a/strum_macros/Cargo.toml +++ b/strum_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "strum_macros" -version = "0.24.0" +version = "0.24.1" edition = "2018" authors = ["Peter Glotfelty "] license = "MIT"