From e3d9a42add1312972c67f029e6ce338bfc24009c Mon Sep 17 00:00:00 2001 From: Arpad Borsos Date: Wed, 21 Feb 2024 09:41:46 +0100 Subject: [PATCH] Bump MSRV to 1.61 Making `new` a `const fn` accidentally increased the MSRV to `1.61`, so lets advertise that. --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 19e2edb..2c58e44 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -416,7 +416,7 @@ dependencies = [ [[package]] name = "thread_local" -version = "1.1.7" +version = "1.1.8" dependencies = [ "cfg-if", "criterion", diff --git a/Cargo.toml b/Cargo.toml index d63ea87..7d56f27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/Amanieu/thread_local-rs" readme = "README.md" keywords = ["thread_local", "concurrent", "thread"] edition = "2021" -rust-version = "1.59" +rust-version = "1.61" [features] # this feature provides performance improvements using nightly features diff --git a/README.md b/README.md index d3f7553..9d8e1f2 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ thread_local = "1.1" ## Minimum Rust version -This crate's minimum supported Rust version (MSRV) is 1.59.0. +This crate's minimum supported Rust version (MSRV) is 1.61.0. ## License