Skip to content

Commit d64a637

Browse files
authored
Merge pull request scala#178 from scala-steward/update/scala3-library-3.1.3-RC2
2 parents e904fc0 + 33c4819 commit d64a637

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
java: [8, 11, 17]
13-
scala: [2.13.8, 3.1.2-RC1]
13+
scala: [2.13.8, 3.1.3-RC2]
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v2

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ThisBuild / scalaVersion := "3.1.2-RC1"
1+
ThisBuild / scalaVersion := "3.1.3-RC2"
22
ThisBuild / crossScalaVersions := Seq((ThisBuild / scalaVersion).value, "2.13.8")
33

44
lazy val root = project.in(file("."))
@@ -21,7 +21,7 @@ lazy val collectionContrib = crossProject(JVMPlatform, JSPlatform)
2121
Compile / compile / scalacOptions ++= {
2222
CrossVersion.partialVersion(scalaVersion.value) match {
2323
case Some((2, _)) => Seq("-opt-warnings", "-Werror", "-Wconf:origin=scala.collection.IterableOps.toIterable:s")
24-
case Some((3, _)) => Seq("-Xfatal-warnings", "-Yscala-release:3.0", "-Wconf:cat=deprecation:s")
24+
case Some((3, _)) => Seq("-Xfatal-warnings", "-scala-output-version:3.0", "-Wconf:cat=deprecation:s")
2525
}
2626
},
2727
Compile / doc / scalacOptions ++= {

0 commit comments

Comments
 (0)