Skip to content

Commit

Permalink
Bump to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AzureMarker committed May 9, 2020
1 parent 8fd9dd2 commit 3d582ae
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion 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.3.0] - 2020-05-09
### Added
- Support submodules. Modules can now wrap other modules and use services from
them. Modules can have multiple submodules.
Expand Down Expand Up @@ -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
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.2.0"
version = "0.3.0"
authors = ["Mark Drobnak <[email protected]>"]
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.2.0", optional = true }
shaku_derive = { version = "~0.3.0", optional = true }
anymap = "0.12.1"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions shaku_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shaku_derive"
version = "0.2.0"
version = "0.3.0"
authors = ["Mark Drobnak <[email protected]>"]
description = "Code generation for the shaku dependency injection framework"
repository = "https://github.com/Mcat12/shaku"
Expand All @@ -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"
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.2.0"
version = "0.3.0"
authors = ["Mark Drobnak <[email protected]>"]
description = "Integration between shaku and Rocket"
repository = "https://github.com/Mcat12/shaku"
Expand All @@ -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]
Expand Down

0 comments on commit 3d582ae

Please sign in to comment.