summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2024-03-24 20:17:10 +0100
committerGitHub <noreply@github.com>2024-03-24 20:17:10 +0100
commitef8a9e812c1b49b61d21813cb30f5982d8da56df (patch)
tree9ef88463077bcda077c40d33414eaa5ef25eb72c
parentc6fd8528446e8738d14a0e6e916acea51f951330 (diff)
Release axum and axum-extra (#2676)axum-v0.7.5axum-extra-v0.9.3
-rw-r--r--axum-extra/CHANGELOG.md6
-rw-r--r--axum-extra/Cargo.toml2
-rw-r--r--axum/CHANGELOG.md4
-rw-r--r--axum/Cargo.toml2
4 files changed, 12 insertions, 2 deletions
diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md
index b7e10bb8..9d1d4df7 100644
--- a/axum-extra/CHANGELOG.md
+++ b/axum-extra/CHANGELOG.md
@@ -7,9 +7,15 @@ and this project adheres to [Semantic Versioning].
# Unreleased
+- None.
+
+# 0.9.3 (24. March, 2024)
+
- **added:** New `tracing` feature which enables logging rejections from
built-in extractor with the `axum::rejection=trace` target ([#2596])
+[#2596]: https://github.com/tokio-rs/axum/pull/2596
+
# 0.9.2 (13. January, 2024)
- **added:** Implement `TypedPath` for `WithRejection<TypedPath, _>`
diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml
index 87eda4bd..2f8e4143 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.9.2"
+version = "0.9.3"
[features]
default = ["tracing"]
diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md
index e62ba1c8..caf41764 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.7.5 (24. March, 2024)
+
- **fixed:** Fixed layers being cloned when calling `axum::serve` directly with
a `Router` or `MethodRouter` ([#2586])
- **fixed:** `h2` is no longer pulled as a dependency unless the `http2` feature
diff --git a/axum/Cargo.toml b/axum/Cargo.toml
index 324fb18d..860c2248 100644
--- a/axum/Cargo.toml
+++ b/axum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "axum"
-version = "0.7.4"
+version = "0.7.5"
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
description = "Web framework that focuses on ergonomics and modularity"
edition = "2021"