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]