1
0
mirror of https://github.com/danog/strum.git synced 2024-11-29 20:18:58 +01:00

Update changelog

This commit is contained in:
Peter Glotfelty 2022-08-07 16:35:38 -07:00
parent d8278db866
commit 7e8a9304bf
2 changed files with 8 additions and 2 deletions

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "strum_macros"
version = "0.24.2"
version = "0.24.3"
edition = "2018"
authors = ["Peter Glotfelty <peter.glotfelty@microsoft.com>"]
license = "MIT"