Skip to content

Commit d8cd5ce

Browse files
committed
Merge remote-tracking branch 'origin/v0.8.x' into mladedav/v0.8.6
2 parents 6cea3ea + c1bb9c3 commit d8cd5ce

File tree

7 files changed

+21
-9
lines changed

7 files changed

+21
-9
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ 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+
# 0.5.5
9+
10+
Released without changes to fix docs.rs build.
11+
812
# 0.5.4
913

1014
- **fixed:** Removed unused `rustversion` dependency ([#3502])

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.4" # remember to bump the version that axum and axum-extra depend on
12+
version = "0.5.5" # remember to bump the version that axum and axum-extra depend on
1313

1414
[package.metadata.cargo-public-api-crates]
1515
allowed = [

axum-extra/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ Yanked from crates.io due to unforeseen breaking change, see [#3190] for details
2727

2828
[#3190]: https://github.com/tokio-rs/axum/pull/3190
2929

30+
# 0.10.3
31+
32+
Released without changes to fix docs.rs build.
33+
3034
# 0.10.2
3135

3236
- **added:** Implement `OptionalFromRequest` for `Host` ([#3177])

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.2"
12+
version = "0.10.3"
1313

1414
[package.metadata.docs.rs]
1515
all-features = true
@@ -101,7 +101,7 @@ with-rejection = ["dep:axum"]
101101
__private_docs = ["axum/json", "dep:serde", "dep:tower"]
102102

103103
[dependencies]
104-
axum-core = { path = "../axum-core", version = "0.5.2" }
104+
axum-core = { path = "../axum-core", version = "0.5.5" }
105105
bytes = "1.1.0"
106106
futures-core = "0.3"
107107
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
@@ -114,7 +114,7 @@ tower-layer = "0.3"
114114
tower-service = "0.3"
115115

116116
# optional dependencies
117-
axum = { path = "../axum", version = "0.8.4", default-features = false, optional = true }
117+
axum = { path = "../axum", version = "0.8.6", default-features = false, optional = true }
118118
axum-macros = { path = "../axum-macros", version = "0.5.0", optional = true }
119119
cookie = { package = "cookie", version = "0.18.0", features = ["percent-encode"], optional = true }
120120
fastrand = { version = "2.1.0", optional = true }

axum/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121
[#3478]: https://github.com/tokio-rs/axum/pull/3478
2222
[#3489]: https://github.com/tokio-rs/axum/pull/3489
2323

24+
# 0.8.6
25+
26+
Released without changes to fix docs.rs build.
27+
2428
# 0.8.5
2529

2630
- **fixed:** Reject JSON request bodies with trailing characters after the JSON document ([#3453])

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.5" # remember to bump the version that axum-extra depends on
3+
version = "0.8.6" # 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"
@@ -94,7 +94,7 @@ __private_docs = [
9494
__private = ["tokio", "http1", "dep:reqwest"]
9595

9696
[dependencies]
97-
axum-core = { path = "../axum-core", version = "0.5.3" }
97+
axum-core = { path = "../axum-core", version = "0.5.5" }
9898
bytes = "1.0"
9999
futures-core = "0.3"
100100
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }

0 commit comments

Comments
 (0)