Skip to content

Commit d07863f

Browse files
committed
Release axum v0.8.8 and axum-extra v0.12.3
1 parent 287c674 commit d07863f

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

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

axum/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](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.8
9+
10+
- Clarify documentation for `Router::route_layer` ([#3567])
11+
12+
[#3567]: https://github.com/tokio-rs/axum/pull/3567
13+
814
# 0.8.7
915

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