Skip to content

Commit 437b9d9

Browse files
committed
Update scala-library to 3.9.0
1 parent 36b7d54 commit 437b9d9

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ val settings = Seq(
104104
"-Wconf:msg=discarding unmoored doc comment:s", // silence errors when scaladoc cannot comprehend nested vals
105105
"-Wconf:msg=Could not find any member to link for:s", // since errors when scaladoc cannot link to stdlib types or nested types
106106
"-Wconf:msg=Variable .+ undefined in comment for:s", // silence errors when there we're showing a buggy Expr in scaladoc comment
107-
"-Wconf:msg=a type was inferred to be kind-polymorphic `Nothing` to conform to:s", // silence warn that appeared after updating to Scala 2.13.18
107+
"-Wconf:msg=a type was inferred to be kind-polymorphic `Nothing` to conform to:s", // silence warn that appeared after updating to Scala 3.9.0
108108
"-Wunused:patvars",
109109
"-Xfatal-warnings",
110110
"-Xlint:adapted-args",

project/BuildVersions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import sbt.librarymanagement.CrossVersion
99

1010
object versions {
1111
// Versions we are publishing for.
12-
val scala213 = "2.13.18"
12+
val scala213 = "3.9.0"
1313
val scala3 = "3.9.0"
1414
// For chimney-sandwich-test-cases-3 ONLY: sbt forbids Scala 2.13 subprojects from depending on Scala 3.8+
1515
// subprojects (sbt-8728), and 2.13's -Ytasty-reader tops out below TASTy 28.8 - see the module for details.

scripts/test-snippets.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class ChimneyExtendedRunner(runner: Runner)(
4545
mkDocsCfg: MkDocsConfig
4646
) extends Runner {
4747

48-
private val defaultScalaVersion = "2.13.18"
48+
private val defaultScalaVersion = "3.9.0"
4949

5050
private val replacePatterns = (mkDocsCfg.extra + (raw"chimney_version\(\)" -> chimneyVersion)).map { case (k, v) =>
5151
(raw"\{\{\s*" + k + raw"\s*\}\}") -> v

0 commit comments

Comments
 (0)