Skip to content

Commit 8762520

Browse files
committed
Release axum 0.8.4
1 parent ac75e2f commit 8762520

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

axum-extra/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ __private_docs = [
4949
]
5050

5151
[dependencies]
52-
axum = { path = "../axum", version = "0.8.3", default-features = false, features = ["original-uri"] }
52+
axum = { path = "../axum", version = "0.8.4", default-features = false, features = ["original-uri"] }
5353
axum-core = { path = "../axum-core", version = "0.5.2" }
5454
bytes = "1.1.0"
5555
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }

axum/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,17 @@ 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-
# Unreleased
8+
# 0.8.4
99

1010
- **added:** `Router::reset_fallback` ([#3320])
11+
- **added:** `WebSocketUpgrade::selected_protocol` ([#3248])
12+
- **fixed:** Panic location for overlapping method routes ([#3319])
13+
- **fixed:** Don't leak a tokio task when using `serve` without graceful shutdown ([#3129])
1114

15+
[#3319]: https://github.com/tokio-rs/axum/pull/3319
1216
[#3320]: https://github.com/tokio-rs/axum/pull/3320
17+
[#3248]: https://github.com/tokio-rs/axum/pull/3248
18+
[#3129]: https://github.com/tokio-rs/axum/pull/3129
1319

1420
# 0.8.3
1521

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