diff --git a/axum-macros/CHANGELOG.md b/axum-macros/CHANGELOG.md index 339c4406..608d3a2f 100644 --- a/axum-macros/CHANGELOG.md +++ b/axum-macros/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - None. +# 0.3.3 (11. February, 2022) + +- **fixed:** Fix `#[debug_handler]` sometimes giving wrong borrow related suggestions ([#1710]) + +[#1710]: https://github.com/tokio-rs/axum/pull/1710 + # 0.3.2 (22. January, 2022) - No public API changes. diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml index ef146abe..6868b116 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.2" # remember to also bump the version that axum and axum-extra depends on +version = "0.3.3" # 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 b540981d..c4ba3003 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - None. +# 0.6.5 (11. February, 2023) + +- **fixed:** Fix `#[debug_handler]` sometimes giving wrong borrow related suggestions ([#1710]) +- Document gotchas related to using `impl IntoResponse` as the return type from handler functions ([#1736]) + +[#1710]: https://github.com/tokio-rs/axum/pull/1710 +[#1736]: https://github.com/tokio-rs/axum/pull/1736 + # 0.6.4 (22. January, 2023) - Depend on axum-macros 0.3.2 diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 8850551f..529d30f6 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.6.4" +version = "0.6.5" categories = ["asynchronous", "network-programming", "web-programming::http-server"] description = "Web framework that focuses on ergonomics and modularity" edition = "2021" @@ -52,7 +52,7 @@ tower-layer = "0.3.2" tower-service = "0.3" # optional dependencies -axum-macros = { path = "../axum-macros", version = "0.3.2", optional = true } +axum-macros = { path = "../axum-macros", version = "0.3.3", optional = true } base64 = { version = "0.20", optional = true } headers = { version = "0.3.7", optional = true } multer = { version = "2.0.0", optional = true }