From 4a5dc4391cc94640eca5eab61de7d5fb508b0145 Mon Sep 17 00:00:00 2001 From: David Pedersen <david.pdrsn@gmail.com> Date: Tue, 24 Jan 2023 13:31:33 +0100 Subject: [PATCH] Release axum and axum-macros (#1721) --- axum-macros/CHANGELOG.md | 4 ++++ axum-macros/Cargo.toml | 2 +- axum/CHANGELOG.md | 4 ++++ axum/Cargo.toml | 4 ++-- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/axum-macros/CHANGELOG.md b/axum-macros/CHANGELOG.md index 839e746f..339c4406 100644 --- a/axum-macros/CHANGELOG.md +++ b/axum-macros/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - None. +# 0.3.2 (22. January, 2022) + +- No public API changes. + # 0.3.1 (9. January, 2022) - **fixed:** Fix warnings for cloning references in generated code ([#1676]) diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml index d3c026ec..ef146abe 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.1" # remember to also bump the version that axum and axum-extra depends on +version = "0.3.2" # 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 d82bf016..b540981d 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - None. +# 0.6.4 (22. January, 2023) + +- Depend on axum-macros 0.3.2 + # 0.6.3 (20. January, 2023) - **added:** Implement `IntoResponse` for `&'static [u8; N]` and `[u8; N]` ([#1690]) diff --git a/axum/Cargo.toml b/axum/Cargo.toml index b9a81fc4..8850551f 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum" -version = "0.6.3" +version = "0.6.4" 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.1", optional = true } +axum-macros = { path = "../axum-macros", version = "0.3.2", optional = true } base64 = { version = "0.20", optional = true } headers = { version = "0.3.7", optional = true } multer = { version = "2.0.0", optional = true }