summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2023-03-22 15:22:47 +0100
committerGitHub <noreply@github.com>2023-03-22 15:22:47 +0100
commit562fa206f09514e7503e898decf73024f5ce6fd4 (patch)
tree5a342443775e6a19364ae35017b06cd88128a327
parentcfb5df7050afe08ba5c50805cc9d8532a3935988 (diff)
Release axum, axum-extra, axum-macros (#1875)axum-v0.6.12axum-macros-v0.3.7axum-extra-v0.7.2
-rw-r--r--axum-extra/CHANGELOG.md4
-rw-r--r--axum-extra/Cargo.toml4
-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.toml6
6 files changed, 18 insertions, 6 deletions
diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md
index 16b52619..b1559c92 100644
--- a/axum-extra/CHANGELOG.md
+++ b/axum-extra/CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning].
# Unreleased
+- None.
+
+# 0.7.2 (22. March, 2023)
+
- **added:** Implement `IntoResponse` for `MultipartError` ([#1861])
# 0.7.1 (13. March, 2023)
diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml
index 299dc9e7..984ebb3f 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.1"
+version = "0.7.2"
[features]
default = []
@@ -49,7 +49,7 @@ tower-layer = "0.3"
tower-service = "0.3"
# optional dependencies
-axum-macros = { path = "../axum-macros", version = "0.3.6", optional = true }
+axum-macros = { path = "../axum-macros", version = "0.3.7", 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 abc8be40..2e04bd75 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.7 (22. March, 2023)
+
- **change:** Update to syn 2.0 ([#1862])
- **fixed:** Give better error if generics are used with `#[derive(FromRef)]` ([#1874])
diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml
index a560009b..5599610b 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.6" # remember to also bump the version that axum and axum-extra depends on
+version = "0.3.7" # 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 987c6b1f..684a9db4 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.12 (22. March, 2023)
+
- **added:** Implement `IntoResponse` for `MultipartError` ([#1861])
- **fixed:** More clearly document what wildcards matches ([#1873])
diff --git a/axum/Cargo.toml b/axum/Cargo.toml
index cf1ac2f9..b4198500 100644
--- a/axum/Cargo.toml
+++ b/axum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "axum"
-version = "0.6.11"
+version = "0.6.12"
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.6", optional = true }
+axum-macros = { path = "../axum-macros", version = "0.3.7", optional = true }
base64 = { version = "0.21.0", optional = true }
headers = { version = "0.3.7", optional = true }
multer = { version = "2.0.0", optional = true }
@@ -102,7 +102,7 @@ rustversion = "1.0.9"
[dev-dependencies]
anyhow = "1.0"
-axum-macros = { path = "../axum-macros", version = "0.3.4", features = ["__private"] }
+axum-macros = { path = "../axum-macros", version = "0.3.7", features = ["__private"] }
quickcheck = "1.0"
quickcheck_macros = "1.0"
reqwest = { version = "0.11.14", default-features = false, features = ["json", "stream", "multipart"] }