diff --git a/Cargo.lock b/Cargo.lock index 95a9ade3..cfb28b36 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -109,7 +109,7 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] name = "axum" -version = "0.8.7" +version = "0.8.8" dependencies = [ "anyhow", "axum-core", @@ -181,7 +181,7 @@ dependencies = [ [[package]] name = "axum-extra" -version = "0.12.2" +version = "0.12.3" dependencies = [ "axum", "axum-core", diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index 7213baf0..3c30c566 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. +# 0.12.3 + +- **changed:** Make the `typed-routing` feature enable the `routing` feature ([#3514]) +- **changed:** Add trailing newline to `ErasedJson::pretty` response bodies ([#3526]) +- **fixed:** Fix integer underflow in `FileStream::try_range_response` for empty files ([#3566]) + +[#3514]: https://github.com/tokio-rs/axum/pull/3514 +[#3526]: https://github.com/tokio-rs/axum/pull/3526 +[#3566]: https://github.com/tokio-rs/axum/pull/3566 + # 0.12.2 - Make it easier to visually scan for default features ([#3550]) diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index 68715b24..12040edb 100644 --- a/axum-extra/Cargo.toml +++ b/axum-extra/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "axum-extra" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.12.2" +version = "0.12.3" [package.metadata.docs.rs] all-features = true @@ -113,7 +113,7 @@ tower-layer = "0.3" tower-service = "0.3" # optional dependencies -axum = { path = "../axum", version = "0.8.7", default-features = false, optional = true } +axum = { path = "../axum", version = "0.8.8", default-features = false, optional = true } axum-macros = { path = "../axum-macros", version = "0.5.0", optional = true } cookie = { package = "cookie", version = "0.18.0", features = ["percent-encode"], optional = true } fastrand = { version = "2.1.0", optional = true } diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index 5a6dc015..e370ab92 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -21,6 +21,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#3478]: https://github.com/tokio-rs/axum/pull/3478 [#3489]: https://github.com/tokio-rs/axum/pull/3489 +# 0.8.8 + +- Clarify documentation for `Router::route_layer` ([#3567]) + +[#3567]: https://github.com/tokio-rs/axum/pull/3567 + # 0.8.7 - Relax implicit `Send` / `Sync` bounds on `RouterAsService`, `RouterIntoService` ([#3555]) diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 901eb2f1..09d16469 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.8.7" # remember to bump the version that axum-extra depends on +version = "0.8.8" # remember to bump the version that axum-extra depends on categories = ["asynchronous", "network-programming", "web-programming::http-server"] description = "Web framework that focuses on ergonomics and modularity" edition = "2021"