From f2e45dca0ae5ca3ded5ae3c14e2539617a785013 Mon Sep 17 00:00:00 2001 From: Tamer Abdulradi Date: Tue, 30 Mar 2021 22:05:53 +0100 Subject: [PATCH] Upgrade to Scala 3 RC2 --- .github/workflows/ci.yml | 10 +++++----- build.sbt | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce01db7..f2f161f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.0.0-RC1] + scala: [3.0.0-RC2] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: @@ -71,7 +71,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.0.0-RC1] + scala: [3.0.0-RC2] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: @@ -97,12 +97,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (3.0.0-RC1) + - name: Download target directories (3.0.0-RC2) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.0.0-RC1-${{ matrix.java }} + name: target-${{ matrix.os }}-3.0.0-RC2-${{ matrix.java }} - - name: Inflate target directories (3.0.0-RC1) + - name: Inflate target directories (3.0.0-RC2) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 7203ad7..a1e1406 100644 --- a/build.sbt +++ b/build.sbt @@ -29,7 +29,7 @@ inThisBuild(Seq( ) ), - scalaVersion := "3.0.0-RC1", + scalaVersion := "3.0.0-RC2", scalacOptions ++= Seq( "-Ykind-projector", "-Yexplicit-nulls",