Skip to content

Commit

Permalink
Add support for Scala 2.13.14 (#1482)
Browse files Browse the repository at this point in the history
Scala 2.13.14 has been released, let's support it.

Pull request: #1482
  • Loading branch information
panbingkun authored May 2, 2024
1 parent 4d83c0b commit 2ee6a19
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- java-version: 21
scala-version: 2.13.11
- java-version: 21
scala-version: 2.13.13
scala-version: 2.13.14
- java-version: 21
scala-version: 3.3.1
- java-version: 21
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
- java-version: 21
scala-version: 2.13.11
- java-version: 21
scala-version: 2.13.13
scala-version: 2.13.14
- java-version: 21
scala-version: 3.3.1
- java-version: 21
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
strategy:
fail-fast: false
matrix:
scala-version: [ 2.12.19, 2.13.13, 3.3.3 ]
scala-version: [ 2.12.19, 2.13.14, 3.3.3 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ val commitsSinceTaggedVersion = {
val scala2_12Versions = 9.to(19)
// .dropWhile(v => isJava21 && v < 18)
.map(v => s"2.12.${v}")
val scala2_13Versions = 2.to(13)
val scala2_13Versions = 2.to(14)
// .dropWhile(v => isJava21 && v < 11)
.map(v => s"2.13.${v}")
val scala33Versions = Seq("3.3.0", "3.3.1", "3.3.2", "3.3.3")
Expand Down Expand Up @@ -89,7 +89,7 @@ val fastparseVersion = "3.0.2"
val scalametaVersion = "4.9.1"

object Deps {
val acyclic = ivy"com.lihaoyi:::acyclic:0.3.11"
val acyclic = ivy"com.lihaoyi:::acyclic:0.3.12"
val bsp4j = ivy"ch.epfl.scala:bsp4j:${bspVersion}"
val bcprovJdk15on = ivy"org.bouncycastle:bcprov-jdk18on:1.78"
val cask = ivy"com.lihaoyi::cask:0.9.1"
Expand Down

0 comments on commit 2ee6a19

Please sign in to comment.