diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md index f17c2250..514deb12 100644 --- a/axum-core/CHANGELOG.md +++ b/axum-core/CHANGELOG.md @@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased -- None. +- **added:** Implement `IntoResponse` for `(R,) where R: IntoResponse` ([#2143]) +- **fixed:** Fix broken docs links ([#2164]) +- **fixed:** Clearly document applying `DefaultBodyLimit` to individual routes ([#2157]) + +[#2143]: https://github.com/tokio-rs/axum/pull/2143 +[#2164]: https://github.com/tokio-rs/axum/pull/2164 +[#2157]: https://github.com/tokio-rs/axum/pull/2157 # 0.3.4 (11. April, 2023) diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index 84d69054..761e8e6f 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning]. # Unreleased -- None. +- **fixed:** Fix typos in docs # 0.8.0 (16. September, 2023) diff --git a/axum-macros/CHANGELOG.md b/axum-macros/CHANGELOG.md index b16b6189..e2d76f51 100644 --- a/axum-macros/CHANGELOG.md +++ b/axum-macros/CHANGELOG.md @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased -- None. +- **fixed:** Fix `rust-version` specific in Cargo.toml ([#2204]) + +[#2204]: https://github.com/tokio-rs/axum/pull/2204 # 0.3.8 (17. July, 2023) diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index b49c8f3f..1abd0aee 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -9,9 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - **added:** Implement `IntoResponse` for `(R,) where R: IntoResponse` ([#2143]) - **changed:** For SSE, add space between field and value for compatibility ([#2149]) +- **fixed:** Clearly document applying `DefaultBodyLimit` to individual routes ([#2157]) [#2143]: https://github.com/tokio-rs/axum/pull/2143 [#2149]: https://github.com/tokio-rs/axum/pull/2149 +[#2157]: https://github.com/tokio-rs/axum/pull/2157 # 0.6.20 (03. August, 2023)