From 1b3f69d6f621bd4e7a480066c78a2d287fbcfaf8 Mon Sep 17 00:00:00 2001 From: Azriel Hoh Date: Wed, 22 Dec 2021 19:26:51 +1300 Subject: [PATCH] Update crate to `0.3.1`. --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f9b8be..2b53b50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.3.1 (2021-12-22) + +* Import all items from parent scope when generating structs in submodule. ([#9]) + +[#9]: https://github.com/azriel91/enum_variant_type/pulls/9 + ## 0.3.0 (2021-12-18) * `#[evt(derive(..))]` on enum adds derives on every variant. ([#6], [#7]) diff --git a/Cargo.toml b/Cargo.toml index 81c9388..b3aa518 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "enum_variant_type" -version = "0.3.0" +version = "0.3.1" authors = ["Azriel Hoh "] edition = "2018" description = "Generates types for each enum variant and conversion trait impls." diff --git a/README.md b/README.md index 5772b28..3797aa1 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This is a poor-man's implementation of