Skip to content

Commit b150ac0

Browse files
committed
Release axum 0.8.3 and related crates
1 parent a9638f7 commit b150ac0

File tree

7 files changed

+26
-17
lines changed

7 files changed

+26
-17
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

axum-core/CHANGELOG.md

+6
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.5.2
9+
10+
- **added:** Implement `Stream::size_hint` for `BodyDataStream` ([#3195])
11+
12+
[#3195]: https://github.com/tokio-rs/axum/pull/3195
13+
814
# 0.5.1
915

1016
Yanked from crates.io due to unforeseen breaking change, see [#3190] for details.

axum-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "axum-core"
1010
readme = "README.md"
1111
repository = "https://github.com/tokio-rs/axum"
12-
version = "0.5.1" # remember to bump the version that axum and axum-extra depend on
12+
version = "0.5.2" # remember to bump the version that axum and axum-extra depend on
1313

1414
[features]
1515
tracing = ["dep:tracing"]

axum-extra/CHANGELOG.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,20 @@ 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-
# Unreleased
9-
10-
- **fixed:** Fix a broken link in the documentation of `ErasedJson` ([#3186])
11-
- **added:** Add `vpath!` for compile time path verification on static paths. ([#3288])
12-
13-
[#3186]: https://github.com/tokio-rs/axum/pull/3186
14-
158
# 0.11.0
169

1710
Yanked from crates.io due to unforeseen breaking change, see [#3190] for details.
1811

1912
[#3190]: https://github.com/tokio-rs/axum/pull/3190
2013

14+
# 0.10.1
15+
16+
- **fixed:** Fix a broken link in the documentation of `ErasedJson` ([#3186])
17+
- **added:** Add `vpath!` for compile time path verification on static paths. ([#3288])
18+
19+
[#3186]: https://github.com/tokio-rs/axum/pull/3186
20+
[#3288]: https://github.com/tokio-rs/axum/pull/3288
21+
2122
# 0.10.0
2223

2324
## since rc.1

axum-extra/Cargo.toml

+3-3
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.11.0"
12+
version = "0.10.1"
1313

1414
[features]
1515
default = ["tracing"]
@@ -49,8 +49,8 @@ __private_docs = [
4949
]
5050

5151
[dependencies]
52-
axum = { path = "../axum", version = "0.8.2", default-features = false, features = ["original-uri"] }
53-
axum-core = { path = "../axum-core", version = "0.5.1" }
52+
axum = { path = "../axum", version = "0.8.3", default-features = false, features = ["original-uri"] }
53+
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"] }
5656
http = "1.0.0"

axum/CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,18 @@ 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.3
99

1010
- **added:** Implement `From<Bytes>` for `Message` ([#3273])
1111
- **added:** Implement `OptionalFromRequest` for `Json` ([#3142])
1212
- **added:** Implement `OptionalFromRequest` for `Extension` ([#3157])
13+
- **added:** Allow setting the read buffer capacity of `WebSocketUpgrade` ([#3178])
1314
- **changed:** Improved code size / compile time of dependent crates ([#3285], ([#3294]))
1415

1516
[#3273]: https://github.com/tokio-rs/axum/pull/3273
1617
[#3142]: https://github.com/tokio-rs/axum/pull/3142
1718
[#3157]: https://github.com/tokio-rs/axum/pull/3157
19+
[#3178]: https://github.com/tokio-rs/axum/pull/3178
1820
[#3285]: https://github.com/tokio-rs/axum/pull/3285
1921
[#3294]: https://github.com/tokio-rs/axum/pull/3294
2022

axum/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "axum"
3-
version = "0.8.2" # remember to bump the version that axum-extra depends on
3+
version = "0.8.3" # 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"
@@ -50,7 +50,7 @@ __private_docs = [
5050
__private = ["tokio", "http1", "dep:reqwest"]
5151

5252
[dependencies]
53-
axum-core = { path = "../axum-core", version = "0.5.1" }
53+
axum-core = { path = "../axum-core", version = "0.5.2" }
5454
bytes = "1.0"
5555
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
5656
http = "1.0.0"

0 commit comments

Comments
 (0)