From 3d582aeea6f281109333f441d3c0fb696bad5501 Mon Sep 17 00:00:00 2001 From: Mcat12 Date: Sat, 9 May 2020 17:27:07 -0400 Subject: [PATCH] Bump to 0.3.0 --- CHANGELOG.md | 5 ++++- shaku/Cargo.toml | 4 ++-- shaku_derive/Cargo.toml | 4 ++-- shaku_rocket/Cargo.toml | 4 ++-- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3b31f3..28b544d 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.3.0] - 2020-05-09 ### Added - Support submodules. Modules can now wrap other modules and use services from them. Modules can have multiple submodules. @@ -35,6 +37,7 @@ 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.2.0...HEAD +[Unreleased]: https://github.com/Mcat12/shaku/compare/v0.3.0...HEAD +[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 [0.1.0]: https://github.com/Mcat12/shaku/releases/tag/v0.1.0 diff --git a/shaku/Cargo.toml b/shaku/Cargo.toml index 7969bc8..ab75b6b 100644 --- a/shaku/Cargo.toml +++ b/shaku/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shaku" -version = "0.2.0" +version = "0.3.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.2.0", optional = true } +shaku_derive = { version = "~0.3.0", optional = true } anymap = "0.12.1" [dev-dependencies] diff --git a/shaku_derive/Cargo.toml b/shaku_derive/Cargo.toml index 965f95e..e55dbaf 100644 --- a/shaku_derive/Cargo.toml +++ b/shaku_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shaku_derive" -version = "0.2.0" +version = "0.3.0" authors = ["Mark Drobnak "] description = "Code generation for the shaku dependency injection framework" repository = "https://github.com/Mcat12/shaku" @@ -17,5 +17,5 @@ syn = { version = "1.0", features = ["extra-traits", "full"] } proc-macro2 = "1.0" [dev-dependencies] -shaku = "~0.2.0" +shaku = "~0.3.0" trybuild = "1.0" diff --git a/shaku_rocket/Cargo.toml b/shaku_rocket/Cargo.toml index 2f611b9..033e5f7 100644 --- a/shaku_rocket/Cargo.toml +++ b/shaku_rocket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shaku_rocket" -version = "0.2.0" +version = "0.3.0" authors = ["Mark Drobnak "] description = "Integration between shaku and Rocket" repository = "https://github.com/Mcat12/shaku" @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0" edition = "2018" [dependencies] -shaku = "~0.2.0" +shaku = "~0.3.0" rocket = "0.4" [patch.crates-io]