diff --git a/CHANGELOG.md b/CHANGELOG.md index d0920f9e..d23e42d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## 0.25.0 +* [#276](https://github.com/Peternator7/strum/pull/276). Fixes [#275](https://github.com/Peternator7/strum/issues/275) and + [#281](https://github.com/Peternator7/strum/issues/281). Not sure exactly why this broke, perhaps incompatibilities between + syn 1 and 2. PR fixes the issue by only looking at attributes of the "list" type `[attr(item, item)]`. + +## 0.25.0 + ### Breaking Changes * [#261](https://github.com/Peternator7/strum/pull/261) Upgrade syn dependency to version 2. This bumps the msrv to diff --git a/strum_macros/Cargo.toml b/strum_macros/Cargo.toml index 2b435692..d294cb11 100644 --- a/strum_macros/Cargo.toml +++ b/strum_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "strum_macros" -version = "0.25.0" +version = "0.25.1" edition = "2018" authors = ["Peter Glotfelty "] license = "MIT" @@ -26,4 +26,4 @@ rustversion = "1.0" syn = { version = "2.0", features = ["parsing", "extra-traits"] } [dev-dependencies] -strum = "0.24" +strum = "0.25"