From c1f865f10ffecc8a211e98ac7e8c5014d3949f45 Mon Sep 17 00:00:00 2001 From: Diggory Hardy Date: Mon, 25 Nov 2024 13:29:51 +0000 Subject: [PATCH] Bump the MSRV to 1.63.0 (#1536) --- .github/workflows/test.yml | 2 +- CHANGELOG.md | 2 +- Cargo.toml | 2 +- rand_chacha/Cargo.toml | 2 +- rand_core/CHANGELOG.md | 2 +- rand_core/Cargo.toml | 2 +- rand_distr/Cargo.toml | 2 +- rand_pcg/Cargo.toml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1108a9cab2..4a05842243 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -55,7 +55,7 @@ jobs: - os: ubuntu-latest target: x86_64-unknown-linux-gnu variant: MSRV - toolchain: 1.61.0 + toolchain: 1.63.0 - os: ubuntu-latest deps: sudo apt-get update ; sudo apt install gcc-multilib target: i686-unknown-linux-gnu diff --git a/CHANGELOG.md b/CHANGELOG.md index 56579821c7..8a9fc39ab3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ You may also find the [Upgrade Guide](https://rust-random.github.io/book/update. ## [Unreleased] - Add `rand::distributions::WeightedIndex::{weight, weights, total_weight}` (#1420) - Add `IndexedRandom::choose_multiple_array`, `index::sample_array` (#1453, #1469) -- Bump the MSRV to 1.61.0 +- Bump the MSRV to 1.63.0 - Rename `Rng::gen` to `Rng::random` to avoid conflict with the new `gen` keyword in Rust 2024 (#1435) - Move all benchmarks to new `benches` crate (#1439) and migrate to Criterion (#1490) - Annotate panicking methods with `#[track_caller]` (#1442, #1447) diff --git a/Cargo.toml b/Cargo.toml index 0b22e9606b..73a36ac6c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["random", "rng"] categories = ["algorithms", "no-std"] autobenches = true edition = "2021" -rust-version = "1.61" +rust-version = "1.63" include = ["src/", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"] [package.metadata.docs.rs] diff --git a/rand_chacha/Cargo.toml b/rand_chacha/Cargo.toml index c15389cdc0..385b9a6eed 100644 --- a/rand_chacha/Cargo.toml +++ b/rand_chacha/Cargo.toml @@ -13,7 +13,7 @@ ChaCha random number generator keywords = ["random", "rng", "chacha"] categories = ["algorithms", "no-std"] edition = "2021" -rust-version = "1.61" +rust-version = "1.63" [package.metadata.docs.rs] all-features = true diff --git a/rand_core/CHANGELOG.md b/rand_core/CHANGELOG.md index d422fe30bd..c8876be32e 100644 --- a/rand_core/CHANGELOG.md +++ b/rand_core/CHANGELOG.md @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] -- Bump the MSRV to 1.61.0 +- Bump the MSRV to 1.63.0 - The `serde1` feature has been renamed `serde` (#1477) ## [0.9.0-alpha.1] - 2024-03-18 diff --git a/rand_core/Cargo.toml b/rand_core/Cargo.toml index 13d2b56a47..5870328c17 100644 --- a/rand_core/Cargo.toml +++ b/rand_core/Cargo.toml @@ -13,7 +13,7 @@ Core random number generator traits and tools for implementation. keywords = ["random", "rng"] categories = ["algorithms", "no-std"] edition = "2021" -rust-version = "1.61" +rust-version = "1.63" [package.metadata.docs.rs] # To build locally: diff --git a/rand_distr/Cargo.toml b/rand_distr/Cargo.toml index efcfed67ba..211d30c0f2 100644 --- a/rand_distr/Cargo.toml +++ b/rand_distr/Cargo.toml @@ -13,7 +13,7 @@ Sampling from random number distributions keywords = ["random", "rng", "distribution", "probability"] categories = ["algorithms", "no-std"] edition = "2021" -rust-version = "1.61" +rust-version = "1.63" include = ["/src", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"] [package.metadata.docs.rs] diff --git a/rand_pcg/Cargo.toml b/rand_pcg/Cargo.toml index 1bd7398ca6..a66abb0521 100644 --- a/rand_pcg/Cargo.toml +++ b/rand_pcg/Cargo.toml @@ -13,7 +13,7 @@ Selected PCG random number generators keywords = ["random", "rng", "pcg"] categories = ["algorithms", "no-std"] edition = "2021" -rust-version = "1.61" +rust-version = "1.63" [package.metadata.docs.rs] all-features = true