Skip to content

Commit

Permalink
Bump to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AzureMarker committed May 26, 2020
1 parent a46e305 commit fb2cc28
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.4.0] - 2020-05-26
### Breaking Changes
- Container is dead, long live Module! Resolving services now deals with modules
instead of a Container of the module. Instead of building a container, you
Expand Down Expand Up @@ -33,7 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Changed
- shaku_rocket now ensures that the thread_safe feature is enabled.

[module_macro]: https://docs.rs/shaku/0.4.0/shaku/macro.module.html
[module macro]: https://docs.rs/shaku/0.4.0/shaku/macro.module.html
[submodule guide]: https://docs.rs/shaku/0.4.0/shaku/guide/submodules/index.html

## [0.3.1] - 2020-05-11
Expand Down Expand Up @@ -72,7 +74,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release

[Unreleased]: https://github.com/Mcat12/shaku/compare/v0.3.1...HEAD
[Unreleased]: https://github.com/Mcat12/shaku/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/Mcat12/shaku/releases/tag/v0.4.0
[0.3.1]: https://github.com/Mcat12/shaku/releases/tag/v0.3.1
[0.3.0]: https://github.com/Mcat12/shaku/releases/tag/v0.3.0
[0.2.0]: https://github.com/Mcat12/shaku/releases/tag/v0.2.0
Expand Down
4 changes: 2 additions & 2 deletions shaku/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shaku"
version = "0.3.1"
version = "0.4.0"
authors = ["Mark Drobnak <mark.drobnak@gmail.com>"]
description = "Compile Time Dependency Injection for Rust"
repository = "https://github.com/Mcat12/shaku"
Expand All @@ -10,7 +10,7 @@ license = "MIT/Apache-2.0"
edition = "2018"

[dependencies]
shaku_derive = { version = "~0.3.1", path = "../shaku_derive", optional = true }
shaku_derive = { version = "~0.4.0", path = "../shaku_derive", optional = true }
anymap = "0.12.1"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion shaku_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shaku_derive"
version = "0.3.1"
version = "0.4.0"
authors = ["Mark Drobnak <mark.drobnak@gmail.com>"]
description = "Code generation for the shaku dependency injection framework"
repository = "https://github.com/Mcat12/shaku"
Expand Down
4 changes: 2 additions & 2 deletions shaku_rocket/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shaku_rocket"
version = "0.3.1"
version = "0.4.0"
authors = ["Mark Drobnak <mark.drobnak@gmail.com>"]
description = "Integration between shaku and Rocket"
repository = "https://github.com/Mcat12/shaku"
Expand All @@ -9,5 +9,5 @@ license = "MIT/Apache-2.0"
edition = "2018"

[dependencies]
shaku = { version = "~0.3.1", path = "../shaku", features = ["thread_safe"] }
shaku = { version = "~0.4.0", path = "../shaku", features = ["thread_safe"] }
rocket = "0.4"

0 comments on commit fb2cc28

Please sign in to comment.