Skip to content

Commit

Permalink
Merge pull request #147 from typelevel/topic/dotty-rc2
Browse files Browse the repository at this point in the history
Scala 3.0.0-RC2
  • Loading branch information
larsrh committed Apr 1, 2021
2 parents 3a8c145 + da2cd56 commit 36b26d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.0.0-RC1, 2.12.13, 2.13.5]
scala: [3.0.0-RC2, 2.12.13, 2.13.5]
java: [adopt@1.8]
runs-on: ${{ matrix.os }}
steps:
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ThisBuild / endYear := Some(2021)
ThisBuild / developers := List(
Developer("djspiewak", "Daniel Spiewak", "@djspiewak", url("https://github.com/djspiewak")))

ThisBuild / crossScalaVersions := Seq("3.0.0-RC1", "2.12.13", "2.13.5")
ThisBuild / crossScalaVersions := Seq("3.0.0-RC2", "2.12.13", "2.13.5")

ThisBuild / githubWorkflowTargetBranches := Seq("series/1.x")

Expand Down Expand Up @@ -79,7 +79,7 @@ lazy val scalatest = crossProject(JSPlatform, JVMPlatform)
name := "cats-effect-testing-scalatest",

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.6"))
"org.scalatest" %% "scalatest" % "3.2.7"))

lazy val utest = crossProject(JSPlatform, JVMPlatform)
.in(file("utest"))
Expand All @@ -91,7 +91,7 @@ lazy val utest = crossProject(JSPlatform, JVMPlatform)

libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect-testkit" % CatsEffectVersion,
"com.lihaoyi" %% "utest" % "0.7.7"))
"com.lihaoyi" %% "utest" % "0.7.8"))

lazy val minitest = crossProject(JSPlatform, JVMPlatform)
.in(file("minitest"))
Expand All @@ -102,4 +102,4 @@ lazy val minitest = crossProject(JSPlatform, JVMPlatform)

libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect-testkit" % CatsEffectVersion,
"io.monix" %% "minitest" % "2.9.3"))
"io.monix" %% "minitest" % "2.9.4"))

0 comments on commit 36b26d8

Please sign in to comment.