Skip to content

Commit

Permalink
Out with 3.0.0-M3, in with Scala 3.0.0-RC2 (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
VlachJosef committed Mar 30, 2021
1 parent a8716a2 commit c8abb24
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit c8abb24

Please sign in to comment.