Skip to content

Commit

Permalink
Add support for Scala 2.12.19 and 2.13.13 (#1421)
Browse files Browse the repository at this point in the history
Fix #1420

Pull request: #1421
  • Loading branch information
lefou authored Mar 5, 2024
1 parent c58df82 commit 95b58dc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix:
scala-version: [2.12.18, 2.13.12, 3.3.3]
scala-version: [2.12.19, 2.13.13, 3.3.3]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions amm/repl/src/test/scala/ammonite/session/AdvancedTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ object AdvancedTests extends TestSuite{
check.session("""
@ // Compiler plugins imported without `.$plugin` are not loaded
@ import $ivy.`org.typelevel:::kind-projector:0.13.2`
@ import $ivy.`org.typelevel:::kind-projector:0.13.3`
@ trait TC0[F[_]]
defined trait TC0
Expand All @@ -330,7 +330,7 @@ object AdvancedTests extends TestSuite{
@ // You need to use `import $plugin.$ivy`
@ import $plugin.$ivy.`org.typelevel:::kind-projector:0.13.2`
@ import $plugin.$ivy.`org.typelevel:::kind-projector:0.13.3`
@ trait TC[F[_]]
defined trait TC
Expand Down
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ val commitsSinceTaggedVersion = {
.toInt
}

val scala2_12Versions = Seq("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 scala2_12Versions = 9.to(19).map(v => s"2.12.${v}")
val scala2_13Versions = 2.to(13).map(v => s"2.13.${v}")
val scala32Versions = Seq("3.2.0", "3.2.1", "3.2.2")
val scala33Versions = Seq("3.3.0", "3.3.1", "3.3.2", "3.3.3")
val scala3Versions = scala32Versions ++ scala33Versions
Expand Down

0 comments on commit 95b58dc

Please sign in to comment.