diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a8da9ff..4c25159d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.0.0-M3, 3.0.0-RC1, 2.12.13, 2.13.4] + scala: [3.0.0-RC2, 3.0.0-RC1, 2.12.13, 2.13.4] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: @@ -102,12 +102,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-M3) + - name: Download target directories (3.0.0-RC2) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.0.0-M3-${{ matrix.java }} + name: target-${{ matrix.os }}-3.0.0-RC2-${{ matrix.java }} - - name: Inflate target directories (3.0.0-M3) + - 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 6cf73a32..3f0dc74e 100644 --- a/build.sbt +++ b/build.sbt @@ -14,7 +14,7 @@ ThisBuild / organizationName := "Typelevel" ThisBuild / publishGithubUser := "johnynek" ThisBuild / publishFullName := "P. Oscar Boykin" -ThisBuild / crossScalaVersions := List("3.0.0-M3", "3.0.0-RC1", "2.12.13", "2.13.4") +ThisBuild / crossScalaVersions := List("3.0.0-RC2", "3.0.0-RC1", "2.12.13", "2.13.4") ThisBuild / versionIntroduced := Map( "3.0.0-M2" -> "0.1.99", diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 01033bf2..2392eb74 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -2,9 +2,9 @@ import sbt._ import org.portablescala.sbtplatformdeps.PlatformDepsPlugin.autoImport._ object Dependencies { - lazy val cats = Def.setting("org.typelevel" %%% "cats-core" % "2.4.2") - lazy val munit = Def.setting("org.scalameta" %%% "munit" % "0.7.22") - lazy val munitScalacheck = Def.setting("org.scalameta" %%% "munit-scalacheck" % "0.7.22") + lazy val cats = Def.setting("org.typelevel" %%% "cats-core" % "2.5.0") + lazy val munit = Def.setting("org.scalameta" %%% "munit" % "0.7.23") + lazy val munitScalacheck = Def.setting("org.scalameta" %%% "munit-scalacheck" % "0.7.23") lazy val fastParse = "com.lihaoyi" %% "fastparse" % "2.3.2" lazy val parsley = "org.http4s" %% "parsley" % "1.5.0-M3" lazy val jawnAst = "org.typelevel" %% "jawn-ast" % "1.1.0"