Skip to content

Commit e2d49c5

Browse files
committed
Merge branch 'v0.8.x'
2 parents 4b28e44 + d07863f commit e2d49c5

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ 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.3
9+
10+
- **changed:** Make the `typed-routing` feature enable the `routing` feature ([#3514])
11+
- **changed:** Add trailing newline to `ErasedJson::pretty` response bodies ([#3526])
12+
- **fixed:** Fix integer underflow in `FileStream::try_range_response` for empty files ([#3566])
13+
14+
[#3514]: https://github.com/tokio-rs/axum/pull/3514
15+
[#3526]: https://github.com/tokio-rs/axum/pull/3526
16+
[#3566]: https://github.com/tokio-rs/axum/pull/3566
17+
818
# 0.12.2
919

1020
- Make it easier to visually scan for default features ([#3550])

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

1414
[package.metadata.docs.rs]
1515
all-features = true
@@ -113,7 +113,7 @@ tower-layer = "0.3"
113113
tower-service = "0.3"
114114

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

axum/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ 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.8
25+
26+
- Clarify documentation for `Router::route_layer` ([#3567])
27+
28+
[#3567]: https://github.com/tokio-rs/axum/pull/3567
29+
2430
# 0.8.7
2531

2632
- Relax implicit `Send` / `Sync` bounds on `RouterAsService`, `RouterIntoService` ([#3555])

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.7" # remember to bump the version that axum-extra depends on
3+
version = "0.8.8" # 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)