Skip to content

Commit 4404f27

Browse files
committed
Release axum v0.8.7 and axum-extra v0.12.2
1 parent 8f1545a commit 4404f27

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
[features]
1515
default = ["tracing"]
@@ -89,7 +89,7 @@ tower-layer = "0.3"
8989
tower-service = "0.3"
9090

9191
# optional dependencies
92-
axum = { path = "../axum", version = "0.8.4", default-features = false, optional = true }
92+
axum = { path = "../axum", version = "0.8.7", default-features = false, optional = true }
9393
axum-macros = { path = "../axum-macros", version = "0.5.0", optional = true }
9494
cookie = { package = "cookie", version = "0.18.0", features = ["percent-encode"], optional = true }
9595
fastrand = { version = "2.1.0", optional = true }

axum/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ 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.8.7
9+
10+
- Relax implicit `Send` / `Sync` bounds on `RouterAsService`, `RouterIntoService` ([#3555])
11+
- Make it easier to visually scan for default features ([#3550])
12+
- Fix some documentation typos
13+
14+
[#3550]: https://github.com/tokio-rs/axum/pull/3550
15+
[#3555]: https://github.com/tokio-rs/axum/pull/3555
16+
817
# 0.8.6
918

1019
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)