From 1305ed1f8c82d9a7778ec7359704dc41c791ec20 Mon Sep 17 00:00:00 2001 From: Kamil Rojewski Date: Fri, 21 Apr 2023 07:14:13 +0200 Subject: [PATCH] version bump --- CHANGELOG.md | 14 ++++++++++++++ springtime-web-axum/Cargo.toml | 2 +- springtime/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8200e95..a397e11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## [springtime] + +### New + +* Reading config from optional `springtime.json` file in current directory. +* Re-exporting `BoxFuture` from `springtime-di`. +* `ApplicationConfig` derives now `Deserialize`. + +### Changed + +* Moved `BoxFuture`, `FutureExt` re-exports to `future` mod. +* Runners with the same priority run concurrently with `async` feature. +* Removed `async-examples` feature. + ## [springtime-di] 0.3.2 ### Changed diff --git a/springtime-web-axum/Cargo.toml b/springtime-web-axum/Cargo.toml index 2a62069..cbdec03 100644 --- a/springtime-web-axum/Cargo.toml +++ b/springtime-web-axum/Cargo.toml @@ -22,7 +22,7 @@ futures = "0.3.28" fxhash = "0.2.1" hyper = "0.14.26" serde = "1.0.160" -springtime = { version = "0.2.0", path = "../springtime" } +springtime = { version = "0.3.0", path = "../springtime" } springtime-di = { version = "0.3.1", path = "../springtime-di", features = ["async"] } springtime-web-axum-derive = { version = "0.1.0", path = "../springtime-web-axum-derive", optional = true } thiserror = "1.0.40" diff --git a/springtime/Cargo.toml b/springtime/Cargo.toml index d119f4e..bb2192a 100644 --- a/springtime/Cargo.toml +++ b/springtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "springtime" -version = "0.2.0" +version = "0.3.0" edition.workspace = true authors.workspace = true description = "Dependency injection based application bootstrapping and execution crate."