diff --git a/CHANGELOG.md b/CHANGELOG.md index 717310f..8639b50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.5.0] - 2020-06-19 ### Breaking Changes - The `module` macro is now a procedural macro and thus requires the `derive` feature. @@ -110,7 +112,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.4.1...HEAD +[Unreleased]: https://github.com/Mcat12/shaku/compare/v0.5.0...HEAD +[0.5.0]: https://github.com/Mcat12/shaku/releases/tag/v0.5.0 [0.4.1]: https://github.com/Mcat12/shaku/releases/tag/v0.4.1 [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 diff --git a/shaku/Cargo.toml b/shaku/Cargo.toml index 8c01a64..0af43c3 100644 --- a/shaku/Cargo.toml +++ b/shaku/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shaku" -version = "0.4.1" +version = "0.5.0" authors = ["Mark Drobnak "] description = "Compile Time Dependency Injection for Rust" repository = "https://github.com/Mcat12/shaku" @@ -10,7 +10,7 @@ license = "MIT/Apache-2.0" edition = "2018" [dependencies] -shaku_derive = { version = "~0.4.1", path = "../shaku_derive", optional = true } +shaku_derive = { version = "~0.5.0", path = "../shaku_derive", optional = true } anymap = "0.12.1" [dev-dependencies] diff --git a/shaku_derive/Cargo.toml b/shaku_derive/Cargo.toml index 7c96e7b..e5011dd 100644 --- a/shaku_derive/Cargo.toml +++ b/shaku_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shaku_derive" -version = "0.4.1" +version = "0.5.0" authors = ["Mark Drobnak "] description = "Code generation for the shaku dependency injection framework" repository = "https://github.com/Mcat12/shaku" diff --git a/shaku_rocket/Cargo.toml b/shaku_rocket/Cargo.toml index 7c6a75a..e107643 100644 --- a/shaku_rocket/Cargo.toml +++ b/shaku_rocket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shaku_rocket" -version = "0.4.0" +version = "0.5.0" authors = ["Mark Drobnak "] description = "Integration between shaku and Rocket" repository = "https://github.com/Mcat12/shaku" @@ -9,5 +9,5 @@ license = "MIT/Apache-2.0" edition = "2018" [dependencies] -shaku = { version = "~0.4.0", path = "../shaku", features = ["thread_safe"] } +shaku = { version = "~0.5.0", path = "../shaku", features = ["thread_safe"] } rocket = "0.4"