From 85ad08cfb00bfcae90afb8a06f0f040d9be2323c Mon Sep 17 00:00:00 2001 From: Pieter Date: Tue, 17 Sep 2024 10:51:34 +0200 Subject: [PATCH] chore: release --- Cargo.toml | 2 +- despatma-abstract-factory/Cargo.toml | 2 +- despatma-dependency-container/Cargo.toml | 2 +- despatma-visitor/CHANGELOG.md | 6 ++++++ despatma-visitor/Cargo.toml | 2 +- despatma/Cargo.toml | 8 ++++---- 6 files changed, 14 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5f841b5..2b2c2c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "0.3.2" +version = "0.3.3" [workspace] diff --git a/despatma-abstract-factory/Cargo.toml b/despatma-abstract-factory/Cargo.toml index 13e4752..e67dc66 100644 --- a/despatma-abstract-factory/Cargo.toml +++ b/despatma-abstract-factory/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["macro", "design", "patterns", "abstract", "factory"] proc-macro = true [dependencies] -despatma-lib = { version = "0.3.2", path = "../despatma-lib" } +despatma-lib = { version = "0.3.3", path = "../despatma-lib" } proc-macro2.workspace = true quote.workspace = true syn = { workspace = true, features = ["full"] } diff --git a/despatma-dependency-container/Cargo.toml b/despatma-dependency-container/Cargo.toml index cd01599..13f28b1 100644 --- a/despatma-dependency-container/Cargo.toml +++ b/despatma-dependency-container/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["design", "patterns", "dependency", "container", "injection"] proc-macro = true [dependencies] -despatma-visitor = { version = "0.3.2", path = "../despatma-visitor" } +despatma-visitor = { version = "0.3.3", path = "../despatma-visitor" } indexmap = "2.4.0" proc-macro-error = "1.0.4" proc-macro2.workspace = true diff --git a/despatma-visitor/CHANGELOG.md b/despatma-visitor/CHANGELOG.md index 9ddcd46..0ce45b4 100644 --- a/despatma-visitor/CHANGELOG.md +++ b/despatma-visitor/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.3](https://github.com/chesedo/despatma/compare/despatma-visitor-v0.3.2...despatma-visitor-v0.3.3) - 2024-09-17 + +### Other + +- Update dev env to Rust 1.81.0 ([#22](https://github.com/chesedo/despatma/pull/22)) + ## [0.3.1](https://github.com/chesedo/despatma/compare/despatma-visitor-v0.3.0...despatma-visitor-v0.3.1) - 2024-08-16 ### Other diff --git a/despatma-visitor/Cargo.toml b/despatma-visitor/Cargo.toml index de5c48c..35fa91f 100644 --- a/despatma-visitor/Cargo.toml +++ b/despatma-visitor/Cargo.toml @@ -13,7 +13,7 @@ proc-macro = true [dependencies] convert_case = "0.6.0" -despatma-lib = { version = "0.3.2", path = "../despatma-lib" } +despatma-lib = { version = "0.3.3", path = "../despatma-lib" } proc-macro2.workspace = true quote.workspace = true syn.workspace = true diff --git a/despatma/Cargo.toml b/despatma/Cargo.toml index cf447e5..9908abf 100644 --- a/despatma/Cargo.toml +++ b/despatma/Cargo.toml @@ -9,10 +9,10 @@ license = "MIT" keywords = ["macro", "design", "patterns"] [dependencies] -despatma-abstract-factory = { version = "0.3.2", path = "../despatma-abstract-factory" } -despatma-dependency-container = { version = "0.3.2", path = "../despatma-dependency-container" } -despatma-lib = { version = "0.3.2", path = "../despatma-lib" } -despatma-visitor = { version = "0.3.2", path = "../despatma-visitor" } +despatma-abstract-factory = { version = "0.3.3", path = "../despatma-abstract-factory" } +despatma-dependency-container = { version = "0.3.3", path = "../despatma-dependency-container" } +despatma-lib = { version = "0.3.3", path = "../despatma-lib" } +despatma-visitor = { version = "0.3.3", path = "../despatma-visitor" } [dev-dependencies] auto_impl = "1.2.0"