From bf2c277951236de0d37dfd2470994b901a63d5e6 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 29 Mar 2022 14:56:17 -0500 Subject: [PATCH] chore: Bump MSRV --- .clippy.toml | 2 +- .github/workflows/ci.yml | 6 +++--- .github/workflows/codegen.yml | 2 +- .github/workflows/rust-next.yml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.clippy.toml b/.clippy.toml index fc3ef79..6383191 100644 --- a/.clippy.toml +++ b/.clippy.toml @@ -1 +1 @@ -msrv = "1.54.0" # MSRV +msrv = "1.59.0" # MSRV diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c3c49ba..e3d6417 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: - name: No-default features run: cargo test --workspace --no-default-features msrv: - name: "Check MSRV: 1.54.0" + name: "Check MSRV: 1.59.0" runs-on: ubuntu-latest steps: - name: Checkout repository @@ -59,7 +59,7 @@ jobs: - name: Install Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.54.0 # MSRV + toolchain: 1.59.0 # MSRV profile: minimal override: true - uses: Swatinem/rust-cache@v1 @@ -113,7 +113,7 @@ jobs: - name: Install Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.54.0 # MSRV + toolchain: 1.59.0 # MSRV profile: minimal override: true components: clippy diff --git a/.github/workflows/codegen.yml b/.github/workflows/codegen.yml index 057b7ac..b0cdd16 100644 --- a/.github/workflows/codegen.yml +++ b/.github/workflows/codegen.yml @@ -26,7 +26,7 @@ jobs: - name: Install Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.54.0 # MSRV + toolchain: 1.59.0 # MSRV profile: minimal override: true components: rustfmt diff --git a/.github/workflows/rust-next.yml b/.github/workflows/rust-next.yml index 109429b..c8a7a61 100644 --- a/.github/workflows/rust-next.yml +++ b/.github/workflows/rust-next.yml @@ -59,9 +59,9 @@ jobs: strategy: matrix: rust: - - 1.54.0 # MSRV + - 1.59.0 # MSRV - stable - continue-on-error: ${{ matrix.rust != '1.54.0' }} # MSRV + continue-on-error: ${{ matrix.rust != '1.59.0' }} # MSRV runs-on: ubuntu-latest steps: - name: Checkout repository