From c89286fc2a4916ee61133aaa8d63fce83f6fc39e Mon Sep 17 00:00:00 2001 From: Peter Glotfelty Date: Sat, 1 Jun 2024 15:08:12 -0700 Subject: [PATCH] Update changelog & strum_macros version --- CHANGELOG.md | 9 +++++++++ strum_macros/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af69b51..eb762f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.26.3 (strum_macros) + +* [#344](https://github.com/Peternator7/strum/pull/344): Hide `EnumTable` because it's going to be deprecated in the next + version. +* [#357](https://github.com/Peternator7/strum/pull/357): Fixes an incompatiblity with `itertools` by using the fully + qualified name rather than the inherent method. +* [#345](https://github.com/Peternator7/strum/pull/345): Allows unnamed tuple like variants to use their variants in + string interpolation. `#[strum(to_string = "Field 0: {0}, Field 1: {1})")]` will now work for tuple variants + ## 0.26.2 * [#337](https://github.com/Peternator7/strum/pull/337): Fix missing generic impls for `EnumTryAs` diff --git a/strum_macros/Cargo.toml b/strum_macros/Cargo.toml index 16a52c7..c38fbad 100644 --- a/strum_macros/Cargo.toml +++ b/strum_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "strum_macros" -version = "0.26.2" +version = "0.26.3" edition = "2018" authors = ["Peter Glotfelty "] license = "MIT"