From 6494214581175a87aaa40beadda523c7da5131a7 Mon Sep 17 00:00:00 2001 From: Adam Kern Date: Wed, 24 Dec 2025 10:47:34 -0800 Subject: [PATCH 1/2] Bump the msrv to 1.65.0 to allow for upgrading hashbrown Hashbrown has a dependabot alert that requires rustc >= 1.65.0 to resolve; since we're about to make a release anyway, let's just bump our MSRV now. --- .github/workflows/ci.yml | 2 +- .github/workflows/latest-deps.yml | 2 +- Cargo.toml | 2 +- README.md | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7555a6c..fd27e8d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - stable - beta - nightly - - 1.64.0 # MSRV + - 5555.0 # MSRV steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@master diff --git a/.github/workflows/latest-deps.yml b/.github/workflows/latest-deps.yml index 79fc81b..cde15ac 100644 --- a/.github/workflows/latest-deps.yml +++ b/.github/workflows/latest-deps.yml @@ -16,7 +16,7 @@ env: CARGO_TERM_COLOR: always HOST: x86_64-unknown-linux-gnu RUSTFLAGS: "-D warnings" - MSRV: 1.64.0 + MSRV: 1.65.0 jobs: latest_deps_stable: diff --git a/Cargo.toml b/Cargo.toml index b0e3bdb..023d7e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ authors = [ "LukeMathWalker ", ] edition = "2018" -rust-version = "1.64.0" +rust-version = "1.65.0" license = "MIT/Apache-2.0" diff --git a/README.md b/README.md index 4dfe7c3..df7c3d0 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ ndarray-stats = "0.6.0" * **0.7.0** * Breaking changes + * Minimum supported Rust version: `1.65.0` * Updated to `ndarray:v0.17.1` * **0.6.0** From 4d6839ef85e2e5d24a2abc758289c0c6279c67d0 Mon Sep 17 00:00:00 2001 From: Adam Kern Date: Wed, 24 Dec 2025 10:48:24 -0800 Subject: [PATCH 2/2] Fix mistaken msrv number --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd27e8d..c3682cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - stable - beta - nightly - - 5555.0 # MSRV + - 1.65.0 # MSRV steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@master