diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f72a459..86d9eaf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.17, 2.13.10, 3.2.0] + scala: [2.12.17, 2.13.10, 3.2.1] java: [temurin@8] runs-on: ${{ matrix.os }} steps: @@ -148,12 +148,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.0) + - name: Download target directories (3.2.1) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.0 + name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.1 - - name: Inflate target directories (3.2.0) + - name: Inflate target directories (3.2.1) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index ac9bec2..b7d2d57 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -14,7 +14,7 @@ pull_request_rules: - body~=labels:.*early-semver-minor - status-success=Build and Test (ubuntu-latest, 2.12.17, temurin@8) - status-success=Build and Test (ubuntu-latest, 2.13.10, temurin@8) - - status-success=Build and Test (ubuntu-latest, 3.2.0, temurin@8) + - status-success=Build and Test (ubuntu-latest, 3.2.1, temurin@8) actions: merge: {} - name: Label calev PRs diff --git a/build.sbt b/build.sbt index f9f0436..5e6d4e6 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ val gitHubOwner = "fthomas" val Scala_2_12 = "2.12.17" val Scala_2_13 = "2.13.10" -val Scala_3 = "3.2.0" +val Scala_3 = "3.2.1" val moduleCrossPlatformMatrix: Map[String, List[Platform]] = Map( "core" -> List(JVMPlatform),