Skip to content

Commit 6bb4a0a

Browse files
committed
Update scala-library to 3.8.4
1 parent 176c39b commit 6bb4a0a

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
@@ -103,7 +103,7 @@ val settings = Seq(
103103
"-Wconf:msg=discarding unmoored doc comment:s", // silence errors when scaladoc cannot comprehend nested vals
104104
"-Wconf:msg=Could not find any member to link for:s", // since errors when scaladoc cannot link to stdlib types or nested types
105105
"-Wconf:msg=Variable .+ undefined in comment for:s", // silence errors when there we're showing a buggy Expr in scaladoc comment
106-
"-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
106+
"-Wconf:msg=a type was inferred to be kind-polymorphic `Nothing` to conform to:s", // silence warn that appeared after updating to Scala 3.8.4
107107
"-Wunused:patvars",
108108
"-Xfatal-warnings",
109109
"-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.8.4"
1313
val scala3 = "3.8.4"
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.8.4"
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)