Skip to content

Commit

Permalink
Update scala-library to 2.12.20
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-center-steward[bot] committed Sep 15, 2024
1 parent 8f7d5d4 commit 0939b83
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ libraryDependencies ++= List(
"org.scalatest" %% "scalatest" % "3.2.19" % Test
)

scalaVersion := "2.12.19"
scalaVersion := "2.12.20"

// keep this as low as possible to avoid running into binary incompatibility such as https://github.com/sbt/sbt/issues/5049
pluginCrossBuild / sbtVersion := "1.3.1"
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-1.5/scalafixEnable/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ lazy val scala211 = project
lazy val scala212 = project
.in(file("scala212"))
.settings(
scalaVersion := "2.12.19" // supported by semanticdb-scalac
scalaVersion := "2.12.20" // supported by semanticdb-scalac
)

lazy val scala3 = project
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-scalafix/basic/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
inThisBuild(
List(
scalaVersion := "2.12.19",
scalaVersion := "2.12.20",
libraryDependencies ++= List(
"org.scalameta" %% "testkit" % "4.3.10" % Test,
"org.scalameta" %% "munit" % "0.7.9" % Test,
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-scalafix/inconfig/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
inThisBuild(
List(
scalaVersion := "2.12.19",
scalaVersion := "2.12.20",
libraryDependencies ++= List(
"org.scalameta" %% "testkit" % "4.3.10" % Test,
"org.scalameta" %% "munit" % "0.7.9" % Test,
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-scalafix/root-validation/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
inThisBuild(
List(
scalaVersion := "2.12.19"
scalaVersion := "2.12.20"
)
)

Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-scalafix/semanticdb-enabled/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ThisBuild / semanticdbEnabled := true

lazy val scala212 = project
.settings(
scalaVersion := "2.12.19",
scalaVersion := "2.12.20",
scalacOptions += "-Ywarn-unused"
)

Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/skip-java17/scalafixResolvers/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
scalaVersion := "2.12.19"
scalaVersion := "2.12.20"

TaskKey[Unit]("check") := {
val expectedRepositories: Seq[String] = Seq(
Expand Down

0 comments on commit 0939b83

Please sign in to comment.