From 5d733fd1f35690c51b43d20296548253c77665ac Mon Sep 17 00:00:00 2001 From: Peter Glotfelty Date: Sat, 20 Nov 2021 11:34:26 -0800 Subject: [PATCH] Update package version to include patches --- CHANGELOG.md | 6 ++++++ strum/Cargo.toml | 2 +- strum_macros/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3b66ce..8976336 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.23.1 + +* [#193](https://github.com/Peternator7/strum/pull/193) Fixes an ambiguity introduced by #186 when your enum has a variant called Error. + +* [#192](https://github.com/Peternator7/strum/pull/192) The work done in #189 was lost in other PR's. This re-added the functionality to support no-std. + ## 0.23.0 * [#185](https://github.com/Peternator7/strum/pull/185) Adds the `FromRepr` derive that adds a `from_repr(x: usize) -> Option` diff --git a/strum/Cargo.toml b/strum/Cargo.toml index 147c7a9..bd1f7cc 100644 --- a/strum/Cargo.toml +++ b/strum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "strum" -version = "0.23.0" +version = "0.23.1" edition = "2018" authors = ["Peter Glotfelty "] license = "MIT" diff --git a/strum_macros/Cargo.toml b/strum_macros/Cargo.toml index e83a6bb..140f2e9 100644 --- a/strum_macros/Cargo.toml +++ b/strum_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "strum_macros" -version = "0.23.0" +version = "0.23.1" edition = "2018" authors = ["Peter Glotfelty "] license = "MIT"