From f501df7d62421ac5cc0c787e843d24643d334f5a Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 5 Feb 2026 07:33:35 -0500 Subject: [PATCH] Bump MSRV to 1.85 and update to Rust 2024 edition Co-Authored-By: Claude Opus 4.5 --- .github/workflows/ci.yml | 2 +- CHANGELOG.rst | 5 +++++ src/_bcrypt/Cargo.toml | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b984545..a83c499b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,7 +99,7 @@ jobs: - {VERSION: "pypy-3.11", NOXSESSION: "tests"} # MSRV - - {VERSION: "3.13", NOXSESSION: "tests", RUST_VERSION: "1.74.0"} + - {VERSION: "3.13", NOXSESSION: "tests", RUST_VERSION: "1.85"} - {VERSION: "3.13", NOXSESSION: "tests", RUST_VERSION: "beta"} - {VERSION: "3.13", NOXSESSION: "tests", RUST_VERSION: "nightly"} name: "${{ matrix.PYTHON.VERSION }} on linux, Rust ${{ matrix.PYTHON.RUST_VERSION || 'stable' }}" diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9661f02d..c6b8f4ae 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ Changelog ========= +Unreleased +---------- + +* Bumped MSRV to 1.85. + 5.0.0 ----- diff --git a/src/_bcrypt/Cargo.toml b/src/_bcrypt/Cargo.toml index a71ae5d4..cc59831d 100644 --- a/src/_bcrypt/Cargo.toml +++ b/src/_bcrypt/Cargo.toml @@ -2,9 +2,9 @@ name = "bcrypt-rust" version = "0.1.0" authors = ["The bcrypt developers "] -edition = "2018" +edition = "2024" # This specifies the MSRV -rust-version = "1.74.0" +rust-version = "1.85" publish = false [dependencies]