Skip to content

Commit a1d22f6

Browse files
committed
Release axum 0.8.5 and related crates
1 parent ad2fd5b commit a1d22f6

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

axum-core/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
# Unreleased
8+
# 0.5.3
99

1010
- **added:** `DefaultBodyLimit::apply` for changing the `DefaultBodyLimit` inside extractors.
1111
([#3368])

axum-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "axum-core"
1010
readme = "README.md"
1111
repository = "https://github.com/tokio-rs/axum"
12-
version = "0.5.2" # remember to bump the version that axum and axum-extra depend on
12+
version = "0.5.3" # remember to bump the version that axum and axum-extra depend on
1313

1414
[features]
1515
tracing = ["dep:tracing"]

axum-extra/CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog],
66
and this project adheres to [Semantic Versioning].
77

8-
# Unreleased
9-
10-
- **added:** Implement `OptionalFromRequest` for `Host` ([#3177])
11-
12-
[#3177]: https://github.com/tokio-rs/axum/pull/3177
13-
148
# 0.11.0
159

1610
Yanked from crates.io due to unforeseen breaking change, see [#3190] for details.
1711

1812
[#3190]: https://github.com/tokio-rs/axum/pull/3190
1913

14+
# 0.10.2
15+
16+
- **added:** Implement `OptionalFromRequest` for `Host` ([#3177])
17+
18+
[#3177]: https://github.com/tokio-rs/axum/pull/3177
19+
2020
# 0.10.1
2121

2222
- **fixed:** Fix a broken link in the documentation of `ErasedJson` ([#3186])

axum-extra/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "axum-extra"
1010
readme = "README.md"
1111
repository = "https://github.com/tokio-rs/axum"
12-
version = "0.10.1"
12+
version = "0.10.2"
1313

1414
[features]
1515
default = ["tracing"]
@@ -47,8 +47,8 @@ typed-routing = ["dep:axum-macros", "dep:percent-encoding", "dep:serde_html_form
4747
__private_docs = ["axum/json", "dep:serde", "dep:tower"]
4848

4949
[dependencies]
50-
axum = { path = "../axum", version = "0.8.4", default-features = false, features = ["original-uri"] }
51-
axum-core = { path = "../axum-core", version = "0.5.2" }
50+
axum = { path = "../axum", version = "0.8.5", default-features = false, features = ["original-uri"] }
51+
axum-core = { path = "../axum-core", version = "0.5.3" }
5252
bytes = "1.1.0"
5353
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
5454
http = "1.0.0"

axum/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
# Unreleased
8+
# 0.8.5
99

1010
- **fixed:** Reject JSON request bodies with trailing characters after the JSON document ([#3453])
1111
- **added:** Implement `OptionalFromRequest` for `Multipart` ([#3220])

axum/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "axum"
3-
version = "0.8.4" # remember to bump the version that axum-extra depends on
3+
version = "0.8.5" # remember to bump the version that axum-extra depends on
44
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
55
description = "Web framework that focuses on ergonomics and modularity"
66
edition = "2021"
@@ -52,7 +52,7 @@ __private_docs = [
5252
__private = ["tokio", "http1", "dep:reqwest"]
5353

5454
[dependencies]
55-
axum-core = { path = "../axum-core", version = "0.5.2" }
55+
axum-core = { path = "../axum-core", version = "0.5.3" }
5656
bytes = "1.0"
5757
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
5858
http = "1.0.0"

0 commit comments

Comments
 (0)