Skip to content

Commit

Permalink
Merge pull request #702 from adpi2/add-2.13.14
Browse files Browse the repository at this point in the history
Add Scala 2.13.14
  • Loading branch information
adpi2 committed May 1, 2024
2 parents b6bdfe6 + 2492822 commit ee577ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions build.sbt
Expand Up @@ -165,14 +165,13 @@ lazy val expressionCompiler = projectMatrix
crossScalaVersions ++= CrossVersion
.partialVersion(scalaVersion.value)
.collect {
case (2, 12) =>
Seq("2.12.19", "2.12.18", "2.12.17", "2.12.16", "2.12.15", "2.12.14", "2.12.13")
case (2, 13) =>
Seq("2.13.13", "2.13.12", "2.13.11", "2.13.10", "2.13.9", "2.13.8", "2.13.7", "2.13.6", "2.13.5", "2.13.4")
// format: off
case (2, 12) => Seq("2.12.19", "2.12.18", "2.12.17", "2.12.16", "2.12.15", "2.12.14", "2.12.13")
case (2, 13) => Seq("2.13.14", "2.13.13", "2.13.12", "2.13.11", "2.13.10", "2.13.9", "2.13.8", "2.13.7", "2.13.6", "2.13.5", "2.13.4")
case (3, 0) => Seq("3.0.2", "3.0.1", "3.0.0")
case (3, 1 | 2 | 3) =>
Seq("3.3.3", "3.3.2", "3.3.1", "3.3.0", "3.2.2", "3.2.1", "3.2.0", "3.1.3", "3.1.2", "3.1.1", "3.1.0")
case (3, 1 | 2 | 3) => Seq("3.3.3", "3.3.2", "3.3.1", "3.3.0", "3.2.2", "3.2.1", "3.2.0", "3.1.3", "3.1.2", "3.1.1", "3.1.0")
case (3, _) => Seq("3.4.1", "3.4.0")
// format: on
}
.toSeq
.flatten,
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Expand Up @@ -3,7 +3,7 @@ import sbt._
object Dependencies {
val scalaEnvVersion = Option(System.getenv("SCALA_VERSION"))
val scala212 = scalaEnvVersion.filter(isScala212).getOrElse("2.12.19")
val scala213 = scalaEnvVersion.filter(isScala213).getOrElse("2.13.13")
val scala213 = scalaEnvVersion.filter(isScala213).getOrElse("2.13.14")
val scala30 = scalaEnvVersion.filter(isScala30).getOrElse("3.0.2")
val scala33 = scalaEnvVersion.filter(isScala33).getOrElse("3.3.3")
val scala34 = scalaEnvVersion.filter(isScala34).getOrElse("3.4.1")
Expand Down

0 comments on commit ee577ab

Please sign in to comment.