From f8f3ae3c65a2dfab54bcc8d1aef4a4a60f7fda58 Mon Sep 17 00:00:00 2001 From: Terts Diepraam Date: Sat, 1 Oct 2022 13:56:28 +0200 Subject: [PATCH] bump msrv to 1.60 --- .clippy.toml | 2 +- .github/workflows/CICD.yml | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.clippy.toml b/.clippy.toml index 64b5fef25..16caf02ee 100644 --- a/.clippy.toml +++ b/.clippy.toml @@ -1 +1 @@ -msrv = "1.59.0" +msrv = "1.60.0" diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index d2f6f5726..d09cd40f2 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -11,7 +11,7 @@ env: PROJECT_NAME: coreutils PROJECT_DESC: "Core universal (cross-platform) utilities" PROJECT_AUTH: "uutils" - RUST_MIN_SRV: "1.59.0" ## MSRV v1.59.0 + RUST_MIN_SRV: "1.60.0" ## MSRV v1.60.0 # * style job configuration STYLE_FAIL_ON_FAULT: true ## (bool) fail the build if a style job contains a fault (error or warning); may be overridden on a per-job basis diff --git a/Cargo.toml b/Cargo.toml index 395fc6a74..10aa68461 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ repository = "https://github.com/uutils/coreutils" readme = "README.md" keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"] categories = ["command-line-utilities"] -rust-version = "1.59.0" +rust-version = "1.60.0" edition = "2021" build = "build.rs" diff --git a/README.md b/README.md index f04c58cea..2696386ae 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![dependency status](https://deps.rs/repo/github/uutils/coreutils/status.svg)](https://deps.rs/repo/github/uutils/coreutils) [![CodeCov](https://codecov.io/gh/uutils/coreutils/branch/master/graph/badge.svg)](https://codecov.io/gh/uutils/coreutils) -![MSRV](https://img.shields.io/badge/MSRV-1.59.0-brightgreen) +![MSRV](https://img.shields.io/badge/MSRV-1.60.0-brightgreen) ----------------------------------------------- @@ -52,7 +52,7 @@ Both can also be generated locally, the instructions for that can be found in th ### Rust Version uutils follows Rust's release channels and is tested against stable, beta and nightly. -The current Minimum Supported Rust Version (MSRV) is `1.59.0`. +The current Minimum Supported Rust Version (MSRV) is `1.60.0`. ## Building