Skip to content

Commit fe89ab5

Browse files
authored
Release (#2461)
1 parent b494d45 commit fe89ab5

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

axum-core/CHANGELOG.md

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

1010
- None.
1111

12+
# 0.4.2 (29. December, 2023)
13+
14+
- **added:** `Body` implements `From<()>` now ([#2411])
15+
16+
[#2411]: https://github.com/tokio-rs/axum/pull/2411
17+
1218
# 0.4.1 (03. December, 2023)
1319

1420
- Fix from_stream doc link to `Stream` in docs ([#2391])

axum-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.4.1" # remember to also bump the version that axum and axum-extra depend on
12+
version = "0.4.2" # remember to also bump the version that axum and axum-extra depend on
1313

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

axum-extra/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning].
77

88
# Unreleased
99

10+
- None.
11+
12+
# 0.9.1 (29. December, 2023)
13+
1014
- **change:** Update version of multer used internally for multipart ([#2433])
1115
- **added:** `JsonDeserializer` extractor ([#2431])
1216

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.9.0"
12+
version = "0.9.1"
1313

1414
[features]
1515
default = []
@@ -38,7 +38,7 @@ typed-routing = ["dep:axum-macros", "dep:percent-encoding", "dep:serde_html_form
3838

3939
[dependencies]
4040
axum = { path = "../axum", version = "0.7.2", default-features = false }
41-
axum-core = { path = "../axum-core", version = "0.4.1" }
41+
axum-core = { path = "../axum-core", version = "0.4.2" }
4242
bytes = "1.1.0"
4343
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
4444
http = "1.0.0"

axum/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
# Unreleased
99

10+
- None.
11+
12+
# 0.7.3 (29. December, 2023)
13+
1014
- **added:** `Body` implements `From<()>` now ([#2411])
1115
- **change:** Update version of multer used internally for multipart ([#2433])
1216
- **change:** Update tokio-tungstenite to 0.21 ([#2435])

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.7.2"
3+
version = "0.7.3"
44
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
55
description = "Web framework that focuses on ergonomics and modularity"
66
edition = "2021"
@@ -42,7 +42,7 @@ __private_docs = ["tower/full", "dep:tower-http"]
4242

4343
[dependencies]
4444
async-trait = "0.1.67"
45-
axum-core = { path = "../axum-core", version = "0.4.1" }
45+
axum-core = { path = "../axum-core", version = "0.4.2" }
4646
bytes = "1.0"
4747
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
4848
http = "1.0.0"

0 commit comments

Comments
 (0)