Skip to content

Commit 689ca1a

Browse files
authored
Update MSRV for all crates to 1.75 (#2943)
1 parent 55f9170 commit 689ca1a

File tree

10 files changed

+24
-6
lines changed

10 files changed

+24
-6
lines changed

.github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22

33
env:
44
CARGO_TERM_COLOR: always
5-
MSRV: '1.70'
5+
MSRV: '1.75'
66

77
on:
88
push:

Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ default-members = ["axum", "axum-*"]
55
# Example has been deleted, but README.md remains
66
exclude = ["examples/async-graphql"]
77
resolver = "2"
8+
9+
[workspace.package]
10+
rust-version = "1.75"

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+
# Unreleased
9+
10+
- **change:** Update minimum rust version to 1.75 ([#2943])
11+
12+
[#2943]: https://github.com/tokio-rs/axum/pull/2943
13+
814
# 0.4.5
915

1016
- **fixed:** Compile errors from the internal `__log_rejection` macro under

axum-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
categories = ["asynchronous", "network-programming", "web-programming"]
33
description = "Core types and traits for axum"
44
edition = "2021"
5-
rust-version = "1.57"
5+
rust-version = { workspace = true }
66
homepage = "https://github.com/tokio-rs/axum"
77
keywords = ["http", "web", "framework"]
88
license = "MIT"

axum-extra/CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ and this project adheres to [Semantic Versioning].
88
# Unreleased
99

1010
- **breaking:** Update to prost 0.13. Used for the `Protobuf` extractor ([#2829])
11-
- **change:** Update minimum rust version to 1.70 ([#2829])
11+
- **change:** Update minimum rust version to 1.75 ([#2943])
1212

1313
[#2829]: https://github.com/tokio-rs/axum/pull/2829
14+
[#2943]: https://github.com/tokio-rs/axum/pull/2943
1415

1516
# 0.9.4
1617

axum-extra/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
categories = ["asynchronous", "network-programming", "web-programming"]
33
description = "Extra utilities for axum"
44
edition = "2021"
5-
rust-version = "1.70"
5+
rust-version = { workspace = true }
66
homepage = "https://github.com/tokio-rs/axum"
77
keywords = ["http", "web", "framework"]
88
license = "MIT"

axum-macros/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+
# Unreleased
9+
10+
- **change:** Update minimum rust version to 1.75 ([#2943])
11+
12+
[#2943]: https://github.com/tokio-rs/axum/pull/2943
13+
814
# 0.4.2
915

1016
- **added:** Add `#[debug_middleware]` ([#1993], [#2725])

axum-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
categories = ["asynchronous", "network-programming", "web-programming"]
33
description = "Macros for axum"
44
edition = "2021"
5-
rust-version = "1.66"
5+
rust-version = { workspace = true }
66
homepage = "https://github.com/tokio-rs/axum"
77
keywords = ["axum"]
88
license = "MIT"

axum/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
# Unreleased
99

1010
- **breaking:** The tuple and tuple_struct `Path` extractor deserializers now check that the number of parameters matches the tuple length exactly ([#2931])
11+
- **change:** Update minimum rust version to 1.75 ([#2943])
1112

1213
[#2931]: https://github.com/tokio-rs/axum/pull/2931
14+
[#2943]: https://github.com/tokio-rs/axum/pull/2943
1315

1416
# 0.7.7
1517

axum/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.7.7"
44
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
55
description = "Web framework that focuses on ergonomics and modularity"
66
edition = "2021"
7-
rust-version = "1.66"
7+
rust-version = { workspace = true }
88
homepage = "https://github.com/tokio-rs/axum"
99
keywords = ["http", "web", "framework"]
1010
license = "MIT"

0 commit comments

Comments
 (0)