Skip to content

Commit 36b26d8

Browse files
authored
Merge pull request #147 from typelevel/topic/dotty-rc2
Scala 3.0.0-RC2
2 parents 3a8c145 + da2cd56 commit 36b26d8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [ubuntu-latest]
25-
scala: [3.0.0-RC1, 2.12.13, 2.13.5]
25+
scala: [3.0.0-RC2, 2.12.13, 2.13.5]
2626
2727
runs-on: ${{ matrix.os }}
2828
steps:

build.sbt

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ ThisBuild / endYear := Some(2021)
2828
ThisBuild / developers := List(
2929
Developer("djspiewak", "Daniel Spiewak", "@djspiewak", url("https://github.com/djspiewak")))
3030

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

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

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

8181
libraryDependencies ++= Seq(
82-
"org.scalatest" %% "scalatest" % "3.2.6"))
82+
"org.scalatest" %% "scalatest" % "3.2.7"))
8383

8484
lazy val utest = crossProject(JSPlatform, JVMPlatform)
8585
.in(file("utest"))
@@ -91,7 +91,7 @@ lazy val utest = crossProject(JSPlatform, JVMPlatform)
9191

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

9696
lazy val minitest = crossProject(JSPlatform, JVMPlatform)
9797
.in(file("minitest"))
@@ -102,4 +102,4 @@ lazy val minitest = crossProject(JSPlatform, JVMPlatform)
102102

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

0 commit comments

Comments
 (0)