Skip to content

Commit

Permalink
chore: release v0.3.5 (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
chesedo authored Nov 6, 2024
1 parent 23c4929 commit c4d6cd9
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.3.4"
version = "0.3.5"

[workspace]
members = [
Expand Down
2 changes: 1 addition & 1 deletion despatma-abstract-factory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ keywords = ["macro", "design", "patterns", "abstract", "factory"]
proc-macro = true

[dependencies]
despatma-lib = { version = "0.3.4", path = "../despatma-lib" }
despatma-lib = { version = "0.3.5", path = "../despatma-lib" }
proc-macro2.workspace = true
quote.workspace = true
syn = { workspace = true, features = ["full"] }
Expand Down
10 changes: 10 additions & 0 deletions despatma-dependency-container/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.5](https://github.com/chesedo/despatma/compare/despatma-dependency-container-v0.3.4...despatma-dependency-container-v0.3.5) - 2024-11-06

### Added

- *(di)* Make containers clonable ([#33](https://github.com/chesedo/despatma/pull/33))

### Other

- *(di)* reduce lifetime uses ([#35](https://github.com/chesedo/despatma/pull/35))

## [0.3.4](https://github.com/chesedo/despatma/compare/despatma-dependency-container-v0.3.3...despatma-dependency-container-v0.3.4) - 2024-09-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion despatma-dependency-container/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ keywords = ["design", "patterns", "dependency", "container", "injection"]
proc-macro = true

[dependencies]
despatma-visitor = { version = "0.3.4", path = "../despatma-visitor" }
despatma-visitor = { version = "0.3.5", path = "../despatma-visitor" }
proc-macro-error = "1.0.4"
proc-macro2.workspace = true
quote.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion despatma-visitor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ proc-macro = true

[dependencies]
convert_case = "0.6.0"
despatma-lib = { version = "0.3.4", path = "../despatma-lib" }
despatma-lib = { version = "0.3.5", path = "../despatma-lib" }
proc-macro2.workspace = true
quote.workspace = true
syn.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions despatma/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ keywords = ["macro", "design", "patterns"]

[dependencies]
async-once-cell.workspace = true
despatma-abstract-factory = { version = "0.3.4", path = "../despatma-abstract-factory" }
despatma-dependency-container = { version = "0.3.4", path = "../despatma-dependency-container", default-features = false }
despatma-lib = { version = "0.3.4", path = "../despatma-lib" }
despatma-visitor = { version = "0.3.4", path = "../despatma-visitor" }
despatma-abstract-factory = { version = "0.3.5", path = "../despatma-abstract-factory" }
despatma-dependency-container = { version = "0.3.5", path = "../despatma-dependency-container", default-features = false }
despatma-lib = { version = "0.3.5", path = "../despatma-lib" }
despatma-visitor = { version = "0.3.5", path = "../despatma-visitor" }

[dev-dependencies]
auto_impl = "1.2.0"
Expand Down

0 comments on commit c4d6cd9

Please sign in to comment.