From e0c5fe6f74747ef50740eacefcc13a0241e434e1 Mon Sep 17 00:00:00 2001 From: scala-steward Date: Fri, 12 Dec 2025 00:10:26 +0000 Subject: [PATCH] Update scala-library, scala-reflect to 2.12.21 --- build.sbt | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 9490d53..0d515a7 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import com.softwaremill.Publish.{updateDocs, ossPublishSettings} import com.softwaremill.UpdateVersionInDocs val scala211 = "2.11.12" -val scala212 = "2.12.20" +val scala212 = "2.12.21" val scala213 = "2.13.15" val scala3 = "3.3.4" @@ -14,7 +14,11 @@ excludeLintKeys in Global ++= Set(ideSkipProject) val commonSettings = commonSmlBuildSettings ++ ossPublishSettings ++ Seq( organization := "com.softwaremill.quicklens", updateDocs := UpdateVersionInDocs(sLog.value, organization.value, version.value, List(file("README.md"))), - scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked"), // useful for debugging macros: "-Ycheck:all", "-Xcheck-macros" + scalacOptions ++= Seq( + "-deprecation", + "-feature", + "-unchecked" + ), // useful for debugging macros: "-Ycheck:all", "-Xcheck-macros" ideSkipProject := (scalaVersion.value != scalaIdeaVersion) ) @@ -77,5 +81,5 @@ lazy val quicklens = (projectMatrix in file("quicklens")) scalaVersions = List(scala212, scala213, scala3) ) .nativePlatform( - scalaVersions = List(scala212, scala213, scala3), + scalaVersions = List(scala212, scala213, scala3) )