From 1133425d6b755ffd57494c95c3e1d4d771d3f13d Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Mon, 13 Mar 2023 11:00:13 +0100 Subject: [PATCH] Release axum, axum-macros, and axum-extra (#1843) --- axum-extra/CHANGELOG.md | 4 ++++ axum-extra/Cargo.toml | 4 ++-- axum-macros/CHANGELOG.md | 4 ++++ axum-macros/Cargo.toml | 2 +- axum/CHANGELOG.md | 6 ++++++ axum/Cargo.toml | 4 ++-- 6 files changed, 19 insertions(+), 5 deletions(-) diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index d69892e2..0d823a4e 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 db12300c..faf6bd34 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 3203bd8d..f6e56d2a 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 bce1830e..adae9702 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 64c6d7dc..090f55e7 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 e9460852..8fd9ddfc 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 }