From fb2cc28f53377559ebb33cf3b5c004fbfd7c5e03 Mon Sep 17 00:00:00 2001 From: Mcat12 Date: Tue, 26 May 2020 12:29:51 -0400 Subject: [PATCH] Bump to 0.4.0 --- CHANGELOG.md | 7 +++++-- shaku/Cargo.toml | 4 ++-- shaku_derive/Cargo.toml | 2 +- shaku_rocket/Cargo.toml | 4 ++-- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ed7086..a60ba35 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.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 @@ -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 @@ -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 diff --git a/shaku/Cargo.toml b/shaku/Cargo.toml index ad328d8..e0e8e44 100644 --- a/shaku/Cargo.toml +++ b/shaku/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shaku" -version = "0.3.1" +version = "0.4.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.3.1", path = "../shaku_derive", optional = true } +shaku_derive = { version = "~0.4.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 c36a1b9..0f61f59 100644 --- a/shaku_derive/Cargo.toml +++ b/shaku_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shaku_derive" -version = "0.3.1" +version = "0.4.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 db69bf1..7c6a75a 100644 --- a/shaku_rocket/Cargo.toml +++ b/shaku_rocket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shaku_rocket" -version = "0.3.1" +version = "0.4.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.3.1", path = "../shaku", features = ["thread_safe"] } +shaku = { version = "~0.4.0", path = "../shaku", features = ["thread_safe"] } rocket = "0.4"