Skip to content

Commit 9a69e41

Browse files
authored
Release axum 0.8.0-alpha.1 and related crates (#2958)
1 parent 20a0624 commit 9a69e41

File tree

8 files changed

+30
-18
lines changed

8 files changed

+30
-18
lines changed

axum-core/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ 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.5.0
99

10+
## alpha.1
11+
12+
- **breaking:** Replace `#[async_trait]` with [return-position `impl Trait` in traits][RPITIT] ([#2308])
1013
- **change:** Update minimum rust version to 1.75 ([#2943])
1114

15+
[RPITIT]: https://blog.rust-lang.org/2023/12/21/async-fn-rpit-in-traits.html
16+
[#2308]: https://github.com/tokio-rs/axum/pull/2308
1217
[#2943]: https://github.com/tokio-rs/axum/pull/2943
1318

1419
# 0.4.5

axum-core/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-core"
1010
readme = "README.md"
1111
repository = "https://github.com/tokio-rs/axum"
12-
version = "0.4.5" # remember to also bump the version that axum and axum-extra depend on
12+
version = "0.5.0-alpha.1" # remember to bump the version that axum and axum-extra depend on
1313

1414
[features]
1515
tracing = ["dep:tracing"]
@@ -35,7 +35,7 @@ tower-http = { version = "0.6.0", optional = true, features = ["limit"] }
3535
tracing = { version = "0.1.37", default-features = false, optional = true }
3636

3737
[dev-dependencies]
38-
axum = { path = "../axum", version = "0.7.2" }
38+
axum = { path = "../axum", version = "0.8.0-alpha.1" }
3939
axum-extra = { path = "../axum-extra", features = ["typed-header"] }
4040
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
4141
hyper = "1.0.0"

axum-extra/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ 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
8+
# 0.10.0
9+
10+
# alpha.1
911

1012
- **breaking:** Update to prost 0.13. Used for the `Protobuf` extractor ([#2829])
1113
- **change:** Update minimum rust version to 1.75 ([#2943])

axum-extra/Cargo.toml

Lines changed: 5 additions & 5 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.4"
12+
version = "0.10.0-alpha.1"
1313

1414
[features]
1515
default = ["tracing", "multipart"]
@@ -39,8 +39,8 @@ typed-header = ["dep:headers"]
3939
typed-routing = ["dep:axum-macros", "dep:percent-encoding", "dep:serde_html_form", "dep:form_urlencoded"]
4040

4141
[dependencies]
42-
axum = { path = "../axum", version = "0.7.7", default-features = false }
43-
axum-core = { path = "../axum-core", version = "0.4.5" }
42+
axum = { path = "../axum", version = "0.8.0-alpha.1", default-features = false }
43+
axum-core = { path = "../axum-core", version = "0.5.0-alpha.1" }
4444
bytes = "1.1.0"
4545
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
4646
http = "1.0.0"
@@ -54,7 +54,7 @@ tower-layer = "0.3"
5454
tower-service = "0.3"
5555

5656
# optional dependencies
57-
axum-macros = { path = "../axum-macros", version = "0.4.2", optional = true }
57+
axum-macros = { path = "../axum-macros", version = "0.5.0-alpha.1", optional = true }
5858
cookie = { package = "cookie", version = "0.18.0", features = ["percent-encode"], optional = true }
5959
fastrand = { version = "2.1.0", optional = true }
6060
form_urlencoded = { version = "1.1.0", optional = true }
@@ -71,7 +71,7 @@ tokio-util = { version = "0.7", optional = true }
7171
tracing = { version = "0.1.37", default-features = false, optional = true }
7272

7373
[dev-dependencies]
74-
axum = { path = "../axum", version = "0.7.2" }
74+
axum = { path = "../axum", version = "0.8.0-alpha.1" }
7575
hyper = "1.0.0"
7676
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "multipart"] }
7777
serde = { version = "1.0", features = ["derive"] }

axum-macros/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ 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.5.0
99

10+
## alpha.1
11+
12+
- **breaking:** Update code generation for axum-core 0.5.0-alpha.1
1013
- **change:** Update minimum rust version to 1.75 ([#2943])
1114

1215
[#2943]: https://github.com/tokio-rs/axum/pull/2943

axum-macros/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "axum-macros"
1010
readme = "README.md"
1111
repository = "https://github.com/tokio-rs/axum"
12-
version = "0.4.2" # remember to also bump the version that axum and axum-extra depends on
12+
version = "0.5.0-alpha.1" # remember to also bump the version that axum and axum-extra depends on
1313

1414
[features]
1515
default = []
@@ -29,8 +29,8 @@ syn = { version = "2.0", features = [
2929
] }
3030

3131
[dev-dependencies]
32-
axum = { path = "../axum", version = "0.7.2", features = ["macros"] }
33-
axum-extra = { path = "../axum-extra", version = "0.9.0", features = ["typed-routing", "cookie-private", "typed-header"] }
32+
axum = { path = "../axum", version = "0.8.0-alpha.1", features = ["macros"] }
33+
axum-extra = { path = "../axum-extra", version = "0.10.0-alpha.1", features = ["typed-routing", "cookie-private", "typed-header"] }
3434
rustversion = "1.0"
3535
serde = { version = "1.0", features = ["derive"] }
3636
serde_json = "1.0"

axum/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ 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.0
9+
10+
## alpha.1
911

1012
- **breaking:** Require `Sync` for all handlers and services added to `Router`
1113
and `MethodRouter` ([#2473])

axum/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "axum"
3-
version = "0.7.7"
3+
version = "0.8.0-alpha.1" # remember to bump the version that axum-extra and axum-macros depend on
44
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
55
description = "Web framework that focuses on ergonomics and modularity"
66
edition = "2021"
@@ -41,7 +41,7 @@ ws = ["dep:hyper", "tokio", "dep:tokio-tungstenite", "dep:sha1", "dep:base64"]
4141
__private_docs = ["tower/full", "dep:tower-http"]
4242

4343
[dependencies]
44-
axum-core = { path = "../axum-core", version = "0.4.5" }
44+
axum-core = { path = "../axum-core", version = "0.5.0-alpha.1" }
4545
bytes = "1.0"
4646
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
4747
http = "1.0.0"
@@ -61,7 +61,7 @@ tower-layer = "0.3.2"
6161
tower-service = "0.3"
6262

6363
# optional dependencies
64-
axum-macros = { path = "../axum-macros", version = "0.4.2", optional = true }
64+
axum-macros = { path = "../axum-macros", version = "0.5.0-alpha.1", optional = true }
6565
base64 = { version = "0.22.1", optional = true }
6666
hyper = { version = "1.1.0", optional = true }
6767
hyper-util = { version = "0.1.3", features = ["tokio", "server", "service"], optional = true }
@@ -111,7 +111,7 @@ features = [
111111

112112
[dev-dependencies]
113113
anyhow = "1.0"
114-
axum-macros = { path = "../axum-macros", version = "0.4.1", features = ["__private"] }
114+
axum-macros = { path = "../axum-macros", version = "0.5.0-alpha.1", features = ["__private"] }
115115
quickcheck = "1.0"
116116
quickcheck_macros = "1.0"
117117
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "multipart"] }

0 commit comments

Comments
 (0)