From 3df880ffe3278adc23267539f8c8d9d799bff7b6 Mon Sep 17 00:00:00 2001 From: SirCipher Date: Fri, 20 Sep 2024 16:30:10 +0100 Subject: [PATCH 1/2] Bumps CI rustc latest to 1.81.0 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bc381d..ca78737 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: - name: Build Documentation run: cargo doc --lib --no-deps --all-features --workspace env: - RUSTDOCFLAGS: --cfg docsrs -Dwarnings + RUSTDOCFLAGS=: --cfg docsrs -Dwarnings testmsrv: name: Test Suite Latest @@ -35,7 +35,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@stable with: - toolchain: 1.80.0 + toolchain: 1.81.0 - uses: Swatinem/rust-cache@v2 - name: Test run: cargo test --all-features --all-targets --workspace From 37b3ce4efa27c1e7dcde7d972c19b066553e753d Mon Sep 17 00:00:00 2001 From: SirCipher Date: Wed, 25 Sep 2024 18:19:06 +0100 Subject: [PATCH 2/2] Resolves incorrect doc ci command --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca78737..bcdadf8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: - name: Build Documentation run: cargo doc --lib --no-deps --all-features --workspace env: - RUSTDOCFLAGS=: --cfg docsrs -Dwarnings + RUSTDOCFLAGS: --cfg docsrs -Dwarnings testmsrv: name: Test Suite Latest