From d757e0a3aba4d1f54401989f232f133e29ce63ba Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 5 May 2024 13:15:41 +0000 Subject: [PATCH] Update scala-library to 2.13.14 --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 62581711..57c9621e 100644 --- a/build.sbt +++ b/build.sbt @@ -7,9 +7,9 @@ ThisBuild / evictionErrorLevel := Level.Warn def crossSettings[T](scalaVersion: String, if3: List[T], if2: List[T]) = CrossVersion.partialVersion(scalaVersion) match { - case Some((3, _)) => if3 + case Some((3, _)) => if3 case Some((2, 12 | 13)) => if2 - case _ => Nil + case _ => Nil } lazy val commonSettings = Seq( @@ -19,7 +19,7 @@ lazy val commonSettings = Seq( organizationName := "Evolution", organizationHomepage := Some(url("https://evolution.com")), scalaVersion := crossScalaVersions.value.head, - crossScalaVersions := Seq("2.13.12", "3.3.1", "2.12.18"), + crossScalaVersions := Seq("2.13.14", "3.3.1", "2.12.18"), licenses := Seq(("MIT", url("https://opensource.org/licenses/MIT"))), releaseCrossBuild := true, Compile / doc / scalacOptions += "-no-link-warnings",