Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ val settings = Seq(
"-Wconf:msg=discarding unmoored doc comment:s", // silence errors when scaladoc cannot comprehend nested vals
"-Wconf:msg=Could not find any member to link for:s", // since errors when scaladoc cannot link to stdlib types or nested types
"-Wconf:msg=Variable .+ undefined in comment for:s", // silence errors when there we're showing a buggy Expr in scaladoc comment
"-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
"-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
"-Wunused:patvars",
"-Xfatal-warnings",
"-Xlint:adapted-args",
Expand Down
2 changes: 1 addition & 1 deletion project/BuildVersions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import sbt.librarymanagement.CrossVersion

object versions {
// Versions we are publishing for.
val scala213 = "2.13.18"
val scala213 = "3.9.0"
val scala3 = "3.9.0"
// For chimney-sandwich-test-cases-3 ONLY: sbt forbids Scala 2.13 subprojects from depending on Scala 3.8+
// subprojects (sbt-8728), and 2.13's -Ytasty-reader tops out below TASTy 28.8 - see the module for details.
Expand Down
2 changes: 1 addition & 1 deletion scripts/test-snippets.scala
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class ChimneyExtendedRunner(runner: Runner)(
mkDocsCfg: MkDocsConfig
) extends Runner {

private val defaultScalaVersion = "2.13.18"
private val defaultScalaVersion = "3.9.0"

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