diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index d69892e2b3..0d823a4e32 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning]. - None. +# 0.7.1 (13. March, 2023) + +- Updated to latest `axum-macros` + # 0.7.0 (03. March, 2023) - **breaking:** Remove the `spa` feature which should have been removed in 0.6.0 ([#1802]) diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index db12300c34..faf6bd347b 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.7.0" +version = "0.7.1" [features] default = [] @@ -48,7 +48,7 @@ tower-layer = "0.3" tower-service = "0.3" # optional dependencies -axum-macros = { path = "../axum-macros", version = "0.3.5", optional = true } +axum-macros = { path = "../axum-macros", version = "0.3.6", optional = true } cookie = { package = "cookie", version = "0.17", features = ["percent-encode"], optional = true } form_urlencoded = { version = "1.1.0", optional = true } multer = { version = "2.0.0", optional = true } diff --git a/axum-macros/CHANGELOG.md b/axum-macros/CHANGELOG.md index 3203bd8d23..f6e56d2a00 100644 --- a/axum-macros/CHANGELOG.md +++ b/axum-macros/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.3.6 (13. March, 2023) + - **fixed:** Improve `#[debug_handler]` message for known generic request-consuming extractors ([#1826]) diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml index bce1830eff..adae9702c2 100644 --- a/axum-macros/Cargo.toml +++ b/axum-macros/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "axum-macros" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.3.5" # remember to also bump the version that axum and axum-extra depends on +version = "0.3.6" # remember to also bump the version that axum and axum-extra depends on [features] default = [] diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index 64c6d7dc72..090f55e796 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -7,9 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.6.11 (13. March, 2023) + - **fixed:** Don't require `S: Debug` for `impl Debug for Router` ([#1836]) - **fixed:** Clone state a bit less when handling requests ([#1837]) +- **fixed:** Unpin itoa dependency ([#1815]) +[#1815]: https://github.com/tokio-rs/axum/pull/1815 [#1836]: https://github.com/tokio-rs/axum/pull/1836 [#1837]: https://github.com/tokio-rs/axum/pull/1837 diff --git a/axum/Cargo.toml b/axum/Cargo.toml index e9460852de..8fd9ddfcf7 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.6.10" +version = "0.6.11" categories = ["asynchronous", "network-programming", "web-programming::http-server"] description = "Web framework that focuses on ergonomics and modularity" edition = "2021" @@ -51,7 +51,7 @@ tower-layer = "0.3.2" tower-service = "0.3" # optional dependencies -axum-macros = { path = "../axum-macros", version = "0.3.5", optional = true } +axum-macros = { path = "../axum-macros", version = "0.3.6", optional = true } base64 = { version = "0.21.0", optional = true } headers = { version = "0.3.7", optional = true } multer = { version = "2.0.0", optional = true }