summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Platte <jplatte+git@posteo.de>2024-09-27 22:37:09 +0200
committerJonas Platte <jplatte+git@posteo.de>2024-09-27 22:37:09 +0200
commit4b48f308c3307251fc3511c0280e182aa430319d (patch)
tree1dc10b9ce7d310760c7863501dacb80662ee83d1
parent0a0e438a8be03283525939d9bf7f9fc8ef07e884 (diff)
parentfe56a310efbb30b3b178059c48a31d1000ed5f62 (diff)
Merge branch 'v0.7.x' into main
-rw-r--r--axum-core/CHANGELOG.md7
-rw-r--r--axum-core/Cargo.toml2
-rw-r--r--axum-extra/Cargo.toml4
-rw-r--r--axum/CHANGELOG.md6
-rw-r--r--axum/Cargo.toml4
5 files changed, 17 insertions, 6 deletions
diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md
index 464ee314..dc1b9ed5 100644
--- a/axum-core/CHANGELOG.md
+++ b/axum-core/CHANGELOG.md
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+# 0.4.5
+
+- **fixed:** Compile errors from the internal `__log_rejection` macro under
+ certain Cargo feature combinations between axum crates ([#2933])
+
+[#2933]: https://github.com/tokio-rs/axum/pull/2933
+
# 0.4.4
- **added:** Derive `Clone` and `Copy` for `AppendHeaders` ([#2776])
diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml
index afb2fbf0..99146940 100644
--- a/axum-core/Cargo.toml
+++ b/axum-core/Cargo.toml
@@ -9,7 +9,7 @@ license = "MIT"
name = "axum-core"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
-version = "0.4.4" # remember to also bump the version that axum and axum-extra depend on
+version = "0.4.5" # remember to also bump the version that axum and axum-extra depend on
[features]
tracing = ["dep:tracing"]
diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml
index eea44bdd..00c9f7af 100644
--- a/axum-extra/Cargo.toml
+++ b/axum-extra/Cargo.toml
@@ -39,8 +39,8 @@ typed-header = ["dep:headers"]
typed-routing = ["dep:axum-macros", "dep:percent-encoding", "dep:serde_html_form", "dep:form_urlencoded"]
[dependencies]
-axum = { path = "../axum", version = "0.7.6", default-features = false }
-axum-core = { path = "../axum-core", version = "0.4.4" }
+axum = { path = "../axum", version = "0.7.7", default-features = false }
+axum-core = { path = "../axum-core", version = "0.4.5" }
bytes = "1.1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
http = "1.0.0"
diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md
index c9427a63..02987018 100644
--- a/axum/CHANGELOG.md
+++ b/axum/CHANGELOG.md
@@ -8,11 +8,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased
- **breaking:** The tuple and tuple_struct `Path` extractor deserializers now check that the number of parameters matches the tuple length exactly ([#2931])
+
+[#2931]: https://github.com/tokio-rs/axum/pull/2931
+
+# 0.7.7
+
- **change**: Remove manual tables of content from the documentation, since
rustdoc now generates tables of content in the sidebar ([#2921])
[#2921]: https://github.com/tokio-rs/axum/pull/2921
-[#2931]: https://github.com/tokio-rs/axum/pull/2931
# 0.7.6
diff --git a/axum/Cargo.toml b/axum/Cargo.toml
index b4cd4363..263d3a96 100644
--- a/axum/Cargo.toml
+++ b/axum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "axum"
-version = "0.7.6"
+version = "0.7.7"
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
description = "Web framework that focuses on ergonomics and modularity"
edition = "2021"
@@ -42,7 +42,7 @@ __private_docs = ["tower/full", "dep:tower-http"]
[dependencies]
async-trait = "0.1.67"
-axum-core = { path = "../axum-core", version = "0.4.4" }
+axum-core = { path = "../axum-core", version = "0.4.5" }
bytes = "1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
http = "1.0.0"