From 49b15bb6bd27a31a12c87af3940cbf7ad620b3ea Mon Sep 17 00:00:00 2001 From: Bert Peters Date: Fri, 25 Aug 2023 08:49:08 +0200 Subject: [PATCH] Bump MSRV to 1.70 --- .github/workflows/ci.yml | 2 +- CHANGELOG.md | 2 +- Cargo.toml | 2 +- README.md | 2 +- bors.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3955601..fe4c823 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: rust: - - "1.63" # minimum stable rust version + - "1.70" # minimum stable rust version - stable - beta - nightly diff --git a/CHANGELOG.md b/CHANGELOG.md index 55ef4b0..9db6e3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ### Added -- The minimum supported Rust version is now defined as 1.63. Previously it was undefined. +- The minimum supported Rust version is now defined as 1.70. Previously it was undefined. - Wrappers for `std::sync` primitives can now be `const` constructed. ### Breaking diff --git a/Cargo.toml b/Cargo.toml index 9eb04a3..9f86df6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["mutex", "rwlock", "once", "thread"] description = "Ensure deadlock-free mutexes by allocating in order, or else." readme = "README.md" repository = "https://github.com/bertptrs/tracing-mutex" -rust-version = "1.63" +rust-version = "1.70" [package.metadata.docs.rs] # Build docs for all features so the documentation is more complete diff --git a/README.md b/README.md index 8210891..4e22fbc 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ performance penalty in your production environment, this library also offers deb when debug assertions are enabled, and to `Mutex` when they are not. Similar helper types are available for other synchronization primitives. -The minimum supported Rust version is 1.63. Increasing this is not considered a breaking change, but +The minimum supported Rust version is 1.70. Increasing this is not considered a breaking change, but will be avoided within semver-compatible releases if possible. ### Features diff --git a/bors.toml b/bors.toml index 452f44b..dbcad8a 100644 --- a/bors.toml +++ b/bors.toml @@ -1,5 +1,5 @@ status = [ - 'Rust project (1.63)', + 'Rust project (1.70)', 'Rust project (stable)', 'Rust project (beta)', 'Documentation build',