Skip to content

Commit

Permalink
feat: Support Scala 2.13.13 and 2.12.19 (#824)
Browse files Browse the repository at this point in the history
Co-authored-by: Bendix Sältz <[email protected]>
  • Loading branch information
Johnnei and saeltz authored Feb 27, 2024
1 parent 3bf81ea commit a5c4e92
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
matrix:
java: [8, 11]
scala:
- 2.12.17
- 2.12.18
- 2.13.11
- 2.12.19
- 2.13.12
- 2.13.13
steps:
- uses: actions/checkout@v4
- uses: olafurpg/setup-scala@v14
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ developers := List(
)
)

scalaVersion := "2.13.12"
crossScalaVersions := Seq("2.12.17", "2.12.18", "2.13.11", "2.13.12")
scalaVersion := "2.13.13"
crossScalaVersions := Seq("2.12.18", "2.12.19", "2.13.12", "2.13.13")
autoScalaLibrary := false
crossVersion := CrossVersion.full
crossTarget := {
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolvers += Classpaths.sbtPluginReleases
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.10")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.10")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.11")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.1")

if (System.getProperty("add-scapegoat-plugin") == "true")
Expand Down

0 comments on commit a5c4e92

Please sign in to comment.