Skip to content

Commit 8c82917

Browse files
committed
Scala 3.0.0-RC2
1 parent f95c611 commit 8c82917

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
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-M3, 3.0.0-RC1, 2.12.13, 2.13.5]
25+
scala: [3.0.0-RC1, 3.0.0-RC2, 2.12.13, 2.13.5]
2626
2727
runs-on: ${{ matrix.os }}
2828
steps:

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ThisBuild / developers := List(
2525
val Scala213 = "2.13.5"
2626

2727
ThisBuild / scalaVersion := crossScalaVersions.value.last
28-
ThisBuild / crossScalaVersions := Seq("3.0.0-M3", "3.0.0-RC1", "2.12.13", Scala213)
28+
ThisBuild / crossScalaVersions := Seq("3.0.0-RC1", "3.0.0-RC2", "2.12.13", Scala213)
2929

3030
ThisBuild / githubWorkflowBuildPreamble ++= Seq(
3131
WorkflowStep.Use(
@@ -59,7 +59,7 @@ lazy val commonJsSettings = Seq(
5959
doctestGenTests := Seq.empty
6060
)
6161

62-
val CatsVersion = "2.4.2"
62+
val CatsVersion = "2.5.0"
6363

6464
lazy val root = project
6565
.in(file("."))
@@ -169,7 +169,7 @@ lazy val tests = crossProject(JSPlatform, JVMPlatform)
169169
.settings(name := "cats-mtl-tests")
170170
.settings(libraryDependencies ++= Seq(
171171
"org.typelevel" %%% "cats-testkit" % CatsVersion,
172-
"org.typelevel" %%% "discipline-munit" % "1.0.6"))
172+
"org.typelevel" %%% "discipline-munit" % "1.0.7"))
173173
.jsSettings(commonJsSettings)
174174
.jvmSettings(commonJvmSettings)
175175
.jsSettings(Test / scalaJSLinkerConfig ~= (_.withModuleKind(ModuleKind.CommonJSModule)))

0 commit comments

Comments
 (0)