Skip to content

Commit b1ef454

Browse files
committed
Merge branch 'v0.8.x' into jplatte/v0.8.7
2 parents 6832000 + 4404f27 commit b1ef454

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

Cargo.lock

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

axum-extra/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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+
# 0.12.2
9+
10+
- Make it easier to visually scan for default features ([#3550])
11+
12+
[#3550]: https://github.com/tokio-rs/axum/pull/3550
13+
814
# 0.12.1
915

1016
This release contains no changes in code, only a small `Cargo.toml` fix for

axum-extra/Cargo.toml

Lines changed: 2 additions & 2 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.12.1"
12+
version = "0.12.2"
1313

1414
[package.metadata.docs.rs]
1515
all-features = true
@@ -115,7 +115,7 @@ tower-layer = "0.3"
115115
tower-service = "0.3"
116116

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

axum/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,15 @@ 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.7
25+
26+
- Relax implicit `Send` / `Sync` bounds on `RouterAsService`, `RouterIntoService` ([#3555])
27+
- Make it easier to visually scan for default features ([#3550])
28+
- Fix some documentation typos
29+
30+
[#3550]: https://github.com/tokio-rs/axum/pull/3550
31+
[#3555]: https://github.com/tokio-rs/axum/pull/3555
32+
2433
# 0.8.6
2534

2635
Released without changes to fix docs.rs build.

axum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "axum"
3-
version = "0.8.6" # remember to bump the version that axum-extra depends on
3+
version = "0.8.7" # 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"

0 commit comments

Comments
 (0)