summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2023-07-17 10:14:01 +0200
committerGitHub <noreply@github.com>2023-07-17 10:14:01 +0200
commit67f64943831c288f1434c7dee7e732e3f86bda69 (patch)
tree63908380270f0365bf64fa8db43fa29ef11a0f6e
parent2d4bd9e85380cfc6faf3e672b6cee892bccfce3d (diff)
-rw-r--r--axum-extra/CHANGELOG.md6
-rw-r--r--axum-extra/Cargo.toml6
-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, 20 insertions, 8 deletions
diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md
index 0f16d604..8530a967 100644
--- a/axum-extra/CHANGELOG.md
+++ b/axum-extra/CHANGELOG.md
@@ -7,7 +7,11 @@ and this project adheres to [Semantic Versioning].
# Unreleased
-- **fixed:** Remove explicit auto deref from PrivateCookieJar example ([#2028])
+- None.
+
+# 0.7.5 (17. July, 2023)
+
+- **fixed:** Remove explicit auto deref from `PrivateCookieJar` example ([#2028])
[#2028]: https://github.com/tokio-rs/axum/pull/2028
diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml
index 6ccbc46e..8b382084 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.4"
+version = "0.7.5"
[features]
default = []
@@ -50,7 +50,7 @@ tower-layer = "0.3"
tower-service = "0.3"
# optional dependencies
-axum-macros = { path = "../axum-macros", version = "0.3.7", optional = true }
+axum-macros = { path = "../axum-macros", version = "0.3.8", 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 }
@@ -63,7 +63,7 @@ tokio-util = { version = "0.7", optional = true }
[dev-dependencies]
axum = { path = "../axum", version = "0.6.0", features = ["headers"] }
-axum-macros = { path = "../axum-macros", version = "0.3.7", features = ["__private"] }
+axum-macros = { path = "../axum-macros", version = "0.3.8", features = ["__private"] }
http-body = "0.4.4"
hyper = "0.14"
reqwest = { version = "0.11", default-features = false, features = ["json", "stream", "multipart"] }
diff --git a/axum-macros/CHANGELOG.md b/axum-macros/CHANGELOG.md
index dab761c2..b16b6189 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.8 (17. July, 2023)
+
- **fixed:** Allow unreachable code in `#[debug_handler]` ([#2014])
[#2014]: https://github.com/tokio-rs/axum/pull/2014
diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml
index 5599610b..4520209b 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.7" # remember to also bump the version that axum and axum-extra depends on
+version = "0.3.8" # 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 815633a7..60067f5e 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.19 (17. July, 2023)
+
- **added:** Add `axum::extract::Query::try_from_uri` ([#2058])
- **added:** Implement `IntoResponse` for `Box<str>` and `Box<[u8]>` ([#2035])
- **fixed:** Fix bugs around merging routers with nested fallbacks ([#2096])
diff --git a/axum/Cargo.toml b/axum/Cargo.toml
index 0979f127..0bb5d97a 100644
--- a/axum/Cargo.toml
+++ b/axum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "axum"
-version = "0.6.18"
+version = "0.6.19"
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.7", optional = true }
+axum-macros = { path = "../axum-macros", version = "0.3.8", optional = true }
base64 = { version = "0.21.0", optional = true }
headers = { version = "0.3.7", optional = true }
multer = { version = "2.0.0", optional = true }
@@ -104,7 +104,7 @@ rustversion = "1.0.9"
[dev-dependencies]
anyhow = "1.0"
-axum-macros = { path = "../axum-macros", version = "0.3.7", features = ["__private"] }
+axum-macros = { path = "../axum-macros", version = "0.3.8", features = ["__private"] }
quickcheck = "1.0"
quickcheck_macros = "1.0"
reqwest = { version = "0.11.14", default-features = false, features = ["json", "stream", "multipart"] }