diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db77662..a2d5ed9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,7 @@ jobs: runs-on: ${{matrix.os}} strategy: fail-fast: false + max-parallel: 5 matrix: os: - ubuntu-latest @@ -94,8 +95,7 @@ jobs: steps: - uses: actions/checkout@v4 - - id: toolchain - name: Install Rust + - name: Install Rust uses: ./ with: components: clippy diff --git a/CHANGELOG.md b/CHANGELOG.md index 45172b3..a61be21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.8.0] - 2024-01-13 + +* Allow specifying subdirectories for cache. +* Fix toolchain file overriding. + ## [1.7.0] - 2024-01-11 * Allow overriding the toolchain file with explicit `toolchain` input. (#26)