From 02575d36a761b560c223847ca3d6b05aaa608af6 Mon Sep 17 00:00:00 2001 From: Lorenzo Gabriele Date: Sun, 11 Jun 2023 14:46:47 +0200 Subject: [PATCH 1/3] Support Scala 2.13.11 and 2.12.18 - Update acyclic to 0.3.8 --- build.sc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sc b/build.sc index 11eb63427..f4dd07cf7 100644 --- a/build.sc +++ b/build.sc @@ -42,11 +42,11 @@ val commitsSinceTaggedVersion = { // don't. val cross2_3Version = (scala3Ver: String) => if (scala3Ver.startsWith("3.0.") || scala3Ver.startsWith("3.1.")) "2.13.7" - else "2.13.10" + else "2.13.11" -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") -val scala2_13Versions = Seq("2.13.0", "2.13.1", "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") +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.0", "2.13.1", "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") val scala30Versions = Seq("3.0.0", "3.0.1", "3.0.2") val scala31Versions = Seq("3.1.0", "3.1.1", "3.1.2", "3.1.3") val scala32Versions = Seq("3.2.0", "3.2.1", "3.2.2") @@ -79,7 +79,7 @@ val fastparseVersion = "2.3.0" val scalametaVersion = "4.5.13" object Deps { - val acyclic = ivy"com.lihaoyi:::acyclic:0.3.6" + val acyclic = ivy"com.lihaoyi:::acyclic:0.3.8" val bsp4j = ivy"ch.epfl.scala:bsp4j:${bspVersion}" val bcprovJdk15on = ivy"org.bouncycastle:bcprov-jdk15on:1.56" val cask = ivy"com.lihaoyi::cask:0.6.0" From 2e85101eaed7d6aa081681fba4d986cbf77db10d Mon Sep 17 00:00:00 2001 From: Lorenzo Gabriele Date: Sun, 11 Jun 2023 17:35:11 +0200 Subject: [PATCH 2/3] Fix Scala versions in Github Actions --- .github/workflows/actions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 1bee37c42..fe640d0af 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: java-version: [8, 11] - scala-version: [2.12.17, 2.13.10, 3.2.2] + scala-version: [2.12.18, 2.13.11, 3.2.2] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -29,7 +29,7 @@ jobs: fail-fast: false matrix: java-version: [8, 11] - scala-version: [2.12.17, 2.13.10, 3.2.2] + scala-version: [2.12.18, 2.13.11, 3.2.2] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 From 66a77787460e7afe0a9feb0b9b2741d470183024 Mon Sep 17 00:00:00 2001 From: Lorenzo Gabriele Date: Sun, 11 Jun 2023 17:43:24 +0200 Subject: [PATCH 3/3] Update semanticdb to 4.7.8 --- build.sc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sc b/build.sc index f4dd07cf7..ba92b8e66 100644 --- a/build.sc +++ b/build.sc @@ -76,7 +76,7 @@ val (buildVersion, unstable) = scala.util.Try( val bspVersion = "2.0.0-M6" val fastparseVersion = "2.3.0" -val scalametaVersion = "4.5.13" +val scalametaVersion = "4.7.8" object Deps { val acyclic = ivy"com.lihaoyi:::acyclic:0.3.8"