summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2023-01-24 13:31:33 +0100
committerGitHub <noreply@github.com>2023-01-24 13:31:33 +0100
commit4a5dc4391cc94640eca5eab61de7d5fb508b0145 (patch)
tree71801623208496381be073642e35958b154d4556
parent47be78e0b341bf82888a404d7a62d572be47a592 (diff)
Release axum and axum-macros (#1721)axum-v0.6.4axum-macros-v0.3.2
-rw-r--r--axum-macros/CHANGELOG.md4
-rw-r--r--axum-macros/Cargo.toml2
-rw-r--r--axum/CHANGELOG.md4
-rw-r--r--axum/Cargo.toml4
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 }