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/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? 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