From c18ff9dd63b2eb958806d280ef66ff0a4ce0cea9 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Sun, 12 Feb 2023 12:40:42 +0100 Subject: [PATCH] Release axum, axum-extra, and axum-macros (#1750) --- axum-extra/CHANGELOG.md | 7 ++++++- axum-extra/Cargo.toml | 4 ++-- axum-macros/CHANGELOG.md | 6 ++++++ axum-macros/Cargo.toml | 4 ++-- axum/CHANGELOG.md | 4 ++++ axum/Cargo.toml | 6 +++--- 6 files changed, 23 insertions(+), 8 deletions(-) diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md index a545d34b..f4b547c7 100644 --- a/axum-extra/CHANGELOG.md +++ b/axum-extra/CHANGELOG.md @@ -7,13 +7,18 @@ and this project adheres to [Semantic Versioning]. # Unreleased +- None. + +# 0.5.0 (12. February, 2022) + - **added:** Add `option_layer` for converting an `Option` into a `Layer` ([#1696]) - **added:** Implement `Layer` and `Service` for `Either` ([#1696]) - **added:** Add `TypedPath::with_query_params` ([#1744]) -- **breaking:** Update to [`cookie`] 0.17 +- **breaking:** Update to [`cookie`] 0.17 ([#1747]) [#1696]: https://github.com/tokio-rs/axum/pull/1696 [#1744]: https://github.com/tokio-rs/axum/pull/1744 +[#1747]: https://github.com/tokio-rs/axum/pull/1747 [`cookie`]: https://crates.io/crates/cookie # 0.4.2 (02. December, 2022) diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml index 9206690f..9bcf5da4 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.4.2" +version = "0.5.0" [features] default = [] @@ -48,7 +48,7 @@ tower-layer = "0.3" tower-service = "0.3" # optional dependencies -axum-macros = { path = "../axum-macros", version = "0.3.1", optional = true } +axum-macros = { path = "../axum-macros", version = "0.3.4", optional = true } cookie = { package = "cookie", version = "0.17", features = ["percent-encode"], optional = true } form_urlencoded = { version = "1.1.0", optional = true } percent-encoding = { version = "2.1", optional = true } diff --git a/axum-macros/CHANGELOG.md b/axum-macros/CHANGELOG.md index 608d3a2f..6bd23d1a 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.4 (12. February, 2022) + +- **fixed:** Fix `#[derive(FromRef)]` with `Copy` fields generating clippy warnings ([#1749]) + +[#1749]: https://github.com/tokio-rs/axum/pull/1749 + # 0.3.3 (11. February, 2022) - **fixed:** Fix `#[debug_handler]` sometimes giving wrong borrow related suggestions ([#1710]) diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml index 6868b116..1b224dc6 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.3" # remember to also bump the version that axum and axum-extra depends on +version = "0.3.4" # remember to also bump the version that axum and axum-extra depends on [features] default = [] @@ -30,7 +30,7 @@ syn = { version = "1.0", features = [ [dev-dependencies] axum = { path = "../axum", version = "0.6.0", features = ["headers", "macros"] } -axum-extra = { path = "../axum-extra", version = "0.4.0", features = ["typed-routing", "cookie-private"] } +axum-extra = { path = "../axum-extra", version = "0.5.0", features = ["typed-routing", "cookie-private"] } rustversion = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index d646cc5e..9a6b8eb9 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.6.6 (12. February, 2023) + - **fixed:** Enable passing `MethodRouter` to `Router::fallback` ([#1730]) [#1730]: https://github.com/tokio-rs/axum/pull/1730 diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 6d8bb58c..1162c557 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.6.5" +version = "0.6.6" 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.3", optional = true } +axum-macros = { path = "../axum-macros", version = "0.3.4", optional = true } base64 = { version = "0.21.0", optional = true } headers = { version = "0.3.7", optional = true } multer = { version = "2.0.0", optional = true } @@ -68,7 +68,7 @@ rustversion = "1.0.9" [dev-dependencies] anyhow = "1.0" -axum-macros = { path = "../axum-macros", version = "0.3.1", features = ["__private"] } +axum-macros = { path = "../axum-macros", version = "0.3.4", features = ["__private"] } futures = "0.3" quickcheck = "1.0" quickcheck_macros = "1.0"