Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
chesedo authored Sep 23, 2024
1 parent b977533 commit 58a6b9e
Show file tree
Hide file tree
Showing 7 changed files with 22 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.3"
version = "0.3.4"

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

## [Unreleased]

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

### Other

- *(di)* always have a generic lifetime ([#28](https://github.com/chesedo/despatma/pull/28))
- *(di)* incorrectly using async_once_cell on async call tree ([#26](https://github.com/chesedo/despatma/pull/26))

## [0.3.3](https://github.com/chesedo/despatma/compare/despatma-dependency-container-v0.3.2...despatma-dependency-container-v0.3.3) - 2024-09-18

### 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.3", path = "../despatma-visitor" }
despatma-visitor = { version = "0.3.4", 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.3", path = "../despatma-lib" }
despatma-lib = { version = "0.3.4", path = "../despatma-lib" }
proc-macro2.workspace = true
quote.workspace = true
syn.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions despatma/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

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

### Other

- example for using dependency_container ([#27](https://github.com/chesedo/despatma/pull/27))
- dev experience ([#24](https://github.com/chesedo/despatma/pull/24))

## [0.3.3](https://github.com/chesedo/despatma/compare/despatma-v0.3.2...despatma-v0.3.3) - 2024-09-18

### Added
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.3", path = "../despatma-abstract-factory" }
despatma-dependency-container = { version = "0.3.3", path = "../despatma-dependency-container", default-features = false }
despatma-lib = { version = "0.3.3", path = "../despatma-lib" }
despatma-visitor = { version = "0.3.3", path = "../despatma-visitor" }
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" }

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

0 comments on commit 58a6b9e

Please sign in to comment.