Skip to content

Commit

Permalink
Scala 3.3.2 & 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gedochao committed Feb 15, 2024
1 parent 89836cd commit ac46a05
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fail-fast: false
matrix:
java-version: [8, 11]
scala-version: [2.12.18, 2.13.12, 3.2.2, 3.3.1]
scala-version: [2.12.18, 2.13.12, 3.2.2, 3.3.2, 3.4.0]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
7 changes: 4 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,12 @@ val commitsSinceTaggedVersion = {
val scala2_12Versions = Seq("2.12.8", "2.12.9", "2.12.10", "2.12.11", "2.12.12", "2.12.13", "2.12.14", "2.12.15", "2.12.16", "2.12.17", "2.12.18")
val scala2_13Versions = Seq("2.13.2", "2.13.3", "2.13.4", "2.13.5", "2.13.6", "2.13.7", "2.13.8", "2.13.9", "2.13.10", "2.13.11", "2.13.12")
val scala32Versions = Seq("3.2.0", "3.2.1", "3.2.2")
val scala33Versions = Seq("3.3.0", "3.3.1")
val scala3Versions = scala32Versions ++ scala33Versions
val scala33Versions = Seq("3.3.0", "3.3.1", "3.3.2")
val scala34Versions = Seq("3.4.0")
val scala3Versions = scala32Versions ++ scala33Versions ++ scala34Versions

val binCrossScalaVersions = Seq(scala2_12Versions.last, scala2_13Versions.last, scala32Versions.last)
val assemblyCrossScalaVersions = Seq(scala2_12Versions.last, scala2_13Versions.last, scala33Versions.last)
val assemblyCrossScalaVersions = Seq(scala2_12Versions.last, scala2_13Versions.last, scala34Versions.last)
def isScala2_12_10OrLater(sv: String): Boolean = {
(sv.startsWith("2.12.") && sv.stripPrefix("2.12.").length > 1) || sv.startsWith("2.13.")
}
Expand Down

0 comments on commit ac46a05

Please sign in to comment.