diff --git a/CHANGELOG.md b/CHANGELOG.md index 19c92f8..c8ce511 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog -## 0.24.2 +## 0.24.3 (strum_macros) + +* [#231](https://github.com/Peternator7/strum/pull/231) Add ignore lints for EnumIter not implementing Copy or Debug + on the generated iter struct. Copy should generally not be implemented on Iterators. Its an oversight that Debug isn't + implemented, but it will be a breaking change to add that so it'll be added in a future version. + +## 0.24.2 (strum_macros) * [#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`) diff --git a/strum_macros/Cargo.toml b/strum_macros/Cargo.toml index 491d092..c0c349e 100644 --- a/strum_macros/Cargo.toml +++ b/strum_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "strum_macros" -version = "0.24.2" +version = "0.24.3" edition = "2018" authors = ["Peter Glotfelty "] license = "MIT"