Skip to content

Commit c1f865f

Browse files
authored
Bump the MSRV to 1.63.0 (#1536)
1 parent c68463c commit c1f865f

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- os: ubuntu-latest
5656
target: x86_64-unknown-linux-gnu
5757
variant: MSRV
58-
toolchain: 1.61.0
58+
toolchain: 1.63.0
5959
- os: ubuntu-latest
6060
deps: sudo apt-get update ; sudo apt install gcc-multilib
6161
target: i686-unknown-linux-gnu

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You may also find the [Upgrade Guide](https://rust-random.github.io/book/update.
1111
## [Unreleased]
1212
- Add `rand::distributions::WeightedIndex::{weight, weights, total_weight}` (#1420)
1313
- Add `IndexedRandom::choose_multiple_array`, `index::sample_array` (#1453, #1469)
14-
- Bump the MSRV to 1.61.0
14+
- Bump the MSRV to 1.63.0
1515
- Rename `Rng::gen` to `Rng::random` to avoid conflict with the new `gen` keyword in Rust 2024 (#1435)
1616
- Move all benchmarks to new `benches` crate (#1439) and migrate to Criterion (#1490)
1717
- Annotate panicking methods with `#[track_caller]` (#1442, #1447)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ keywords = ["random", "rng"]
1414
categories = ["algorithms", "no-std"]
1515
autobenches = true
1616
edition = "2021"
17-
rust-version = "1.61"
17+
rust-version = "1.63"
1818
include = ["src/", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"]
1919

2020
[package.metadata.docs.rs]

rand_chacha/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ChaCha random number generator
1313
keywords = ["random", "rng", "chacha"]
1414
categories = ["algorithms", "no-std"]
1515
edition = "2021"
16-
rust-version = "1.61"
16+
rust-version = "1.63"
1717

1818
[package.metadata.docs.rs]
1919
all-features = true

rand_core/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8-
- Bump the MSRV to 1.61.0
8+
- Bump the MSRV to 1.63.0
99
- The `serde1` feature has been renamed `serde` (#1477)
1010

1111
## [0.9.0-alpha.1] - 2024-03-18

rand_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Core random number generator traits and tools for implementation.
1313
keywords = ["random", "rng"]
1414
categories = ["algorithms", "no-std"]
1515
edition = "2021"
16-
rust-version = "1.61"
16+
rust-version = "1.63"
1717

1818
[package.metadata.docs.rs]
1919
# To build locally:

rand_distr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Sampling from random number distributions
1313
keywords = ["random", "rng", "distribution", "probability"]
1414
categories = ["algorithms", "no-std"]
1515
edition = "2021"
16-
rust-version = "1.61"
16+
rust-version = "1.63"
1717
include = ["/src", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"]
1818

1919
[package.metadata.docs.rs]

rand_pcg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Selected PCG random number generators
1313
keywords = ["random", "rng", "pcg"]
1414
categories = ["algorithms", "no-std"]
1515
edition = "2021"
16-
rust-version = "1.61"
16+
rust-version = "1.63"
1717

1818
[package.metadata.docs.rs]
1919
all-features = true

0 commit comments

Comments
 (0)