From e8f0f020a5700be5bdeab13241ea03757ff5305e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 27 Apr 2025 14:57:36 +0000 Subject: [PATCH 1/2] chore: release v0.0.11 --- Cargo.toml | 6 +++--- dtype_variant/CHANGELOG.md | 6 ++++++ dtype_variant_derive/CHANGELOG.md | 6 ++++++ 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1505feb..f5bd8fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,15 +4,15 @@ members = ["dtype_variant", "dtype_variant_derive", "examples/*"] [workspace.package] authors = ["Swoorup Joshi "] -version = "0.0.10" +version = "0.0.11" edition = "2024" license = "MIT" keywords = ["enum", "variant", "type-safety", "downcasting", "pattern-matching"] repository = "https://github.com/Swoorup/dtype_variant" [workspace.dependencies] -dtype_variant = { path = "dtype_variant", version = "0.0.10" } -dtype_variant_derive = { path = "dtype_variant_derive", version = "0.0.10" } +dtype_variant = { path = "dtype_variant", version = "0.0.11" } +dtype_variant_derive = { path = "dtype_variant_derive", version = "0.0.11" } darling = "0.20.11" indexmap = "2.9.0" diff --git a/dtype_variant/CHANGELOG.md b/dtype_variant/CHANGELOG.md index dfa9702..7e36be4 100644 --- a/dtype_variant/CHANGELOG.md +++ b/dtype_variant/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.11](https://github.com/Swoorup/dtype_variant/compare/dtype_variant-v0.0.10...dtype_variant-v0.0.11) - 2025-04-27 + +### Other + +- Allow multiple grouped matcher generation + ## [0.0.10](https://github.com/Swoorup/dtype_variant/compare/dtype_variant-v0.0.9...dtype_variant-v0.0.10) - 2025-04-18 ### Other diff --git a/dtype_variant_derive/CHANGELOG.md b/dtype_variant_derive/CHANGELOG.md index 6aaa956..bac1324 100644 --- a/dtype_variant_derive/CHANGELOG.md +++ b/dtype_variant_derive/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.11](https://github.com/Swoorup/dtype_variant/compare/dtype_variant_derive-v0.0.10...dtype_variant_derive-v0.0.11) - 2025-04-27 + +### Other + +- Allow multiple grouped matcher generation + ## [0.0.10](https://github.com/Swoorup/dtype_variant/compare/dtype_variant_derive-v0.0.9...dtype_variant_derive-v0.0.10) - 2025-04-18 ### Other From cdd3ae4fb6817f5f52851af9dde6a515d3150218 Mon Sep 17 00:00:00 2001 From: Swoorup Joshi Date: Mon, 28 Apr 2025 00:59:25 +1000 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc609fe..6790b91 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ A Rust derive macro for creating type-safe enum variants with shared type tokens - 🔍 Constraint trait implementation for variant types - 🎯 Powerful pattern matching through generated macros - 🛠️ Convenient From implementations for variant types -- 🔀 Grouped variant matching for higher-level pattern recognition +- 🔀 Grouped variant matching for matching related variants. ## Why?