Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
krojew committed Apr 10, 2023
1 parent 0eb839e commit 5adfee6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [springtime-di] 0.3.0

### New

* Fallible custom constructors - they should return `Result<Type, ErrorPtr>`,
where `Type` is the type being returned previously. This also implies new entry
in `ComponentInstanceProviderError` and loosing some of its derived traits.

## [springtime-di] 0.2.1

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion springtime-di-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "springtime-di-derive"
version = "0.2.0"
version = "0.3.0"
edition.workspace = true
authors.workspace = true
description = "Derive support for springtime-di crate."
Expand Down
4 changes: 2 additions & 2 deletions springtime-di/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "springtime-di"
version = "0.2.1"
version = "0.3.0"
edition.workspace = true
authors.workspace = true
rust-version = "1.62"
Expand All @@ -25,7 +25,7 @@ futures = { version = "0.3.28", optional = true }
fxhash = "0.2.1"
inventory = "0.3.4"
itertools = "0.10.5"
springtime-di-derive = { path = "../springtime-di-derive", version = "0.2", optional = true }
springtime-di-derive = { path = "../springtime-di-derive", version = "0.3", optional = true }
thiserror = "1.0.39"
tokio = { version = "1.27.0", features = ["full"], optional = true }
tracing = "0.1.37"
Expand Down

0 comments on commit 5adfee6

Please sign in to comment.