Skip to content

Commit 9f6be24

Browse files
authored
axum: Version 0.4.2 (#592)
* axum: Version 0.4.2 This time depending on the correct version of axum-core. * add missing changelog links
1 parent 8e1341d commit 9f6be24

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

axum-core/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
# 0.1.1 (06. December, 2021)
1313

14-
- **added:** `axum_core::response::Response` now exists as a shorthand for writing `Response<BoxBody>`.
14+
- **added:** `axum_core::response::Response` now exists as a shorthand for writing `Response<BoxBody>` ([#590])
15+
16+
[#590]: https://github.com/tokio-rs/axum/pull/590
1517

1618
# 0.1.0 (02. December, 2021)
1719

axum/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- None.
1111

12+
# 0.4.2 (06. December, 2021)
13+
14+
- **fix:** Depend on the correct version of `axum-core` ([#592])
15+
16+
[#592]: https://github.com/tokio-rs/axum/pull/592
17+
1218
# 0.4.1 (06. December, 2021)
1319

14-
- **added:** `axum::response::Response` now exists as a shorthand for writing `Response<BoxBody>`.
20+
- **added:** `axum::response::Response` now exists as a shorthand for writing `Response<BoxBody>` ([#590])
21+
22+
[#590]: https://github.com/tokio-rs/axum/pull/590
1523

1624
# 0.4.0 (02. December, 2021)
1725

axum/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "axum"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
categories = ["asynchronous", "network-programming", "web-programming"]
55
description = "Web framework that focuses on ergonomics and modularity"
66
edition = "2018"
@@ -20,7 +20,7 @@ tower-log = ["tower/log"]
2020
ws = ["tokio-tungstenite", "sha-1", "base64"]
2121

2222
[dependencies]
23-
axum-core = { path = "../axum-core", version = "0.1" }
23+
axum-core = { path = "../axum-core", version = "0.1.1" }
2424
async-trait = "0.1.43"
2525
bitflags = "1.0"
2626
bytes = "1.0"

0 commit comments

Comments
 (0)