From f7f159aca03ea4298d7b43791c6881c4aba5f6b0 Mon Sep 17 00:00:00 2001 From: Raphael Nestler Date: Sat, 9 Mar 2024 21:33:31 +0100 Subject: [PATCH] Bump MSRV to 1.74 Clap requires it. --- .github/workflows/ci.yml | 6 +++--- CHANGELOG.md | 2 +- Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5543ddc..f5753e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: build_and_test: runs-on: ubuntu-22.04 - container: rust:1.71 + container: rust:1.74 steps: - uses: actions/checkout@v3 - run: cargo build @@ -22,7 +22,7 @@ jobs: lint: runs-on: ubuntu-22.04 - container: rust:1.71 + container: rust:1.74 steps: - uses: actions/checkout@v3 - run: rustup component add clippy @@ -30,7 +30,7 @@ jobs: fmt: runs-on: ubuntu-22.04 - container: rust:1.71 + container: rust:1.74 steps: - uses: actions/checkout@v3 - run: rustup component add rustfmt diff --git a/CHANGELOG.md b/CHANGELOG.md index a6bc9bd..148af79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - * Bump MSRV to 1.70 + * Bump MSRV to 1.74 * Update dependencies ### Added diff --git a/Cargo.toml b/Cargo.toml index 1415f63..911ab98 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "attractorr" version = "0.6.1" authors = ["Raphael Nestler "] edition = "2021" -rust-version = "1.71" +rust-version = "1.74" description = "A CLI tool to scrape the web for magnet links" repository = "https://github.com/rnestler/attractorr/" license = "MIT OR Apache-2.0"