summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2023-04-11 17:23:38 +0200
committerGitHub <noreply@github.com>2023-04-11 17:23:38 +0200
commit51edc9c8958b155259e7b0ec1fc3a04864203461 (patch)
treeda8d122d93bb0d78e8711322f15fc93f65566e71
parent6b106f4babfa0417952134040cc0618f2fd60c7c (diff)
-rw-r--r--axum-core/CHANGELOG.md4
-rw-r--r--axum-core/Cargo.toml2
-rw-r--r--axum-extra/CHANGELOG.md4
-rw-r--r--axum-extra/Cargo.toml6
-rw-r--r--axum/CHANGELOG.md4
-rw-r--r--axum/Cargo.toml4
6 files changed, 18 insertions, 6 deletions
diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md
index 4486538e..f17c2250 100644
--- a/axum-core/CHANGELOG.md
+++ b/axum-core/CHANGELOG.md
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- None.
+# 0.3.4 (11. April, 2023)
+
+- Changes to private APIs.
+
# 0.3.3 (03. March, 2023)
- **fixed:** Add `#[must_use]` attributes to types that do nothing unless used ([#1809])
diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml
index ef263564..4373dadc 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.3.3" # remember to also bump the version that axum and axum-extra depend on
+version = "0.3.4" # remember to also bump the version that axum and axum-extra depend on
[features]
tracing = ["dep:tracing"]
diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md
index ae20a0e8..aaf8bc5b 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.3 (11. April, 2023)
+
- **added:** Implement `Deref` and `DerefMut` for built-in extractors ([#1922])
- **added:** Add `OptionalPath` extractor ([#1889])
diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml
index 4f7515a0..847215f9 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.2"
+version = "0.7.3"
[features]
default = []
@@ -34,8 +34,8 @@ query = ["dep:serde_html_form"]
typed-routing = ["dep:axum-macros", "dep:percent-encoding", "dep:serde_html_form", "dep:form_urlencoded"]
[dependencies]
-axum = { path = "../axum", version = "0.6.9", default-features = false }
-axum-core = { path = "../axum-core", version = "0.3.3" }
+axum = { path = "../axum", version = "0.6.13", default-features = false }
+axum-core = { path = "../axum-core", version = "0.3.4" }
bytes = "1.1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
http = "0.2"
diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md
index 2da21583..b7557698 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.13 (11. April, 2023)
+
- **added:** Log rejections from built-in extractors with the
`axum::rejection=trace` target ([#1890])
- **fixed:** Fixed performance regression with `Router::nest` introduced in
diff --git a/axum/Cargo.toml b/axum/Cargo.toml
index 4f3bf4fd..cb4dcf34 100644
--- a/axum/Cargo.toml
+++ b/axum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "axum"
-version = "0.6.12"
+version = "0.6.13"
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
description = "Web framework that focuses on ergonomics and modularity"
edition = "2021"
@@ -32,7 +32,7 @@ __private_docs = ["tower/full", "dep:tower-http"]
[dependencies]
async-trait = "0.1.67"
-axum-core = { path = "../axum-core", version = "0.3.3" }
+axum-core = { path = "../axum-core", version = "0.3.4" }
bitflags = "1.0"
bytes = "1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }