From 51ec725024fb00057388e5f21dbd63b766fa3e3a Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Tue, 11 Nov 2025 18:38:21 +0100 Subject: [PATCH 1/3] Fix changelog link --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6be4e523..4f792b3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,7 +47,7 @@ Versioning](https://semver.org/spec/v2.0.0.html). The changelog for previous versions was not recorded. [Unreleased]: https://github.com/rust-embedded/rust-i2cdev/compare/0.6.2...HEAD -[v0.6.1]: https://github.com/rust-embedded/rust-i2cdev/compare/0.6.1...0.6.2 +[v0.6.2]: https://github.com/rust-embedded/rust-i2cdev/compare/0.6.1...0.6.2 [v0.6.1]: https://github.com/rust-embedded/rust-i2cdev/compare/0.6.0...0.6.1 [v0.6.0]: https://github.com/rust-embedded/rust-i2cdev/compare/0.5.1...0.6.0 [v0.5.1]: https://github.com/rust-embedded/rust-i2cdev/compare/0.5.0...0.5.1 From de5ce4484dbca221f91df468c38ffbfcd3a3dc0f Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Tue, 11 Nov 2025 18:39:04 +0100 Subject: [PATCH 2/3] Run clippy on all targets + update CI --- .github/workflows/clippy.yml | 6 +++--- .github/workflows/rustfmt.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index e6bc5bf9..ee7efa0a 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -10,9 +10,9 @@ jobs: clippy_check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@master with: - toolchain: 1.71.0 + toolchain: 1.91.1 components: clippy - - run: cargo clippy + - run: cargo clippy --all-targets diff --git a/.github/workflows/rustfmt.yml b/.github/workflows/rustfmt.yml index 9c597032..cce88e1e 100644 --- a/.github/workflows/rustfmt.yml +++ b/.github/workflows/rustfmt.yml @@ -12,9 +12,9 @@ jobs: name: Rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@master with: - toolchain: 1.71.0 + toolchain: 1.91.1 components: rustfmt - run: cargo fmt --all -- --check From 068f912393cc59f275e79464a3ff6c0fe746b5e7 Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Tue, 11 Nov 2025 18:39:41 +0100 Subject: [PATCH 3/3] CI: build on more targets --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64a1f146..3c8afd29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,6 @@ jobs: run: sudo apt-get update && sudo apt-get install -y libc6-armhf-cross libc6-dev-armhf-cross gcc-arm-linux-gnueabihf - run: cargo build --target=${{ matrix.TARGET }} - if: ${{ matrix.TARGET == 'armv7-unknown-linux-gnueabihf' }} # We do not run tests on MSRV because of requirements of the additional dependencies - run: cargo test --target=${{ matrix.TARGET }}