From 0170947fb46d535f6645ac5dd5936fa97983f86d Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Fri, 25 Feb 2022 13:46:13 -0800 Subject: [PATCH] Bump MSRV to 1.49 (#1484) --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53db5d3..1b304a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - style - test - nightly - - minversion + - msrv - android - wasm - docs @@ -237,15 +237,15 @@ jobs: cargo check cargo check --all-features - minversion: - name: Minimum version ${{ matrix.rust }} + msrv: + name: MSRV ${{ matrix.rust }} needs: [style] runs-on: ubuntu-latest strategy: matrix: - rust: [1.46.0] + rust: [1.49.0] steps: - name: Checkout