diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01e80be..391e8e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: - toolchain: 1.51.0 + toolchain: 1.56.0 override: true - name: Install build dependencies run: sudo apt install ${{ matrix.build_deps }} @@ -46,14 +46,14 @@ jobs: args: --verbose clippy: - name: Clippy (1.51.0) + name: Clippy (1.56.0) timeout-minutes: 30 runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: - toolchain: 1.51.0 + toolchain: 1.56.0 components: clippy override: true - name: Install build dependencies @@ -61,7 +61,7 @@ jobs: - name: Run clippy uses: actions-rs/clippy-check@v1 with: - name: Clippy (1.51.0) + name: Clippy (1.56.0) token: ${{ secrets.GITHUB_TOKEN }} args: --all-features --all-targets -- -D warnings @@ -117,7 +117,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: - toolchain: 1.51.0 + toolchain: 1.56.0 override: true - name: Install build dependencies run: sudo apt install libpcsclite-dev @@ -142,7 +142,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: - toolchain: 1.51.0 + toolchain: 1.56.0 components: rustfmt override: true - name: Check formatting diff --git a/CHANGELOG.md b/CHANGELOG.md index 73740e4..fb83dad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to Rust's notion of to 1.0.0 are beta releases. ## [Unreleased] +### Changed +- MSRV is now 1.56.0. ## [0.2.0] - 2021-11-22 ### Fixed diff --git a/README.md b/README.md index 3f452f6..40ec2a0 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ or one that you do not care about. On Windows, Linux, and macOS, you can use the [pre-built binaries](https://github.com/str4d/age-plugin-yubikey/releases). -If your system has Rust 1.51+ installed (either via `rustup` or a system +If your system has Rust 1.56+ installed (either via `rustup` or a system package), you can build directly from source: ``` diff --git a/rust-toolchain b/rust-toolchain index d2d6255..47d5636 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1 +1 @@ -1.51.0 \ No newline at end of file +1.56.0 \ No newline at end of file