From 05561e96a70fb8fccb9de3f3fab23de66185cee5 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 6 Sep 2024 13:59:30 +0000 Subject: [PATCH] Update scala-library to 2.12.20 --- build.sbt | 2 +- project/plugins.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 2f5a3d09f..f7aad7c0f 100644 --- a/build.sbt +++ b/build.sbt @@ -34,7 +34,7 @@ import _root_.sbtbuildinfo.BuildInfoPlugin.autoImport._ // com.typesafe.play:play-ahc-ws_2.12:2.9.2 // com.typesafe.play:play-server_2.12:2.9.2 // -ThisBuild / scalaVersion := "2.12.19" +ThisBuild / scalaVersion := "2.12.20" // Show unchecked and deprecated warnings, in this project and its modules. diff --git a/project/plugins.sbt b/project/plugins.sbt index b631eded4..13d2bfbeb 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -44,7 +44,7 @@ addDependencyTreePlugin addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0") // Picks scala-xml 2.1 over 1.1 — otherwise there the below version conflict error -// (when just loading the project) with Scala 2.12.18 or 2.12.19 because they use +// (when just loading the project) with Scala 2.12.18 or 2.12.20 because they use // scala-xml 2.x but Play and SBT use 1.x. // // 2.1 and 1.x are binary compatible, sort of, so this is ok, see e.g.