Skip to content

Commit

Permalink
Update scala-library to 2.13.13
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Feb 27, 2024
1 parent 7e602b3 commit a25cfd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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.13", "3.3.1", "2.12.18"),
licenses := Seq(("MIT", url("https://opensource.org/licenses/MIT"))),
releaseCrossBuild := true,
Compile / doc / scalacOptions += "-no-link-warnings",
Expand Down

0 comments on commit a25cfd2

Please sign in to comment.