Skip to content

Commit fc01f0e

Browse files
committed
Bump MSRV to 1.51
1 parent 8cdf57d commit fc01f0e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
## Breaking Changes
2525

26+
* #1399 Bump MSRV to 1.51.
2627
* #1399 Thread support is now required on all platforms.
2728
* #1135 The "no_metrics" anti-feature has been replaced with
2829
the "metrics" positive feature.
@@ -51,7 +52,6 @@
5152
doesn't make sense for things that must fit in memory anyway.
5253
* #1314 `Subscriber::next_timeout` now requires a mutable self
5354
reference.
54-
* #1337 Bump MSRV to 1.48.
5555
* #1349 The "measure_allocs" feature has been removed.
5656
* #1354 `Error` has been modified to be Copy, removing all
5757
heap-allocated variants.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ extreme::run(async move {
161161

162162
# minimum supported Rust version (MSRV)
163163

164-
We support Rust 1.48.0 and up.
164+
We support Rust 1.51.0 and up.
165165

166166
# architecture
167167

scripts/cross_compile.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ rustup update --no-self-update
1212

1313
RUSTFLAGS="--cfg miri" cargo check
1414

15-
rustup toolchain install 1.48.0 --no-self-update
15+
rustup toolchain install 1.51.0 --no-self-update
1616
cargo clean
1717
rm Cargo.lock
18-
cargo +1.48.0 check
18+
cargo +1.51.0 check
1919

2020
for target in $targets; do
2121
echo "setting up $target..."

0 commit comments

Comments
 (0)