From 3485e3e9edf07440da287c5b398cfbb70530b0a2 Mon Sep 17 00:00:00 2001 From: dejan2609 Date: Mon, 22 Sep 2025 20:06:30 +0200 Subject: [PATCH 1/2] chore: add support for Scala 2.13.17 updated version numbers in files: * .github/workflows/ci.yml * bin/test-release.sh * build.sbt --- .github/workflows/ci.yml | 1 + bin/test-release.sh | 1 + build.sbt | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abb7ec2b..c7e33ac0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,7 @@ jobs: { version: '2.12.20' }, { version: '2.12.19' }, { version: '2.12.18' }, + { version: '2.13.17' }, { version: '2.13.16' }, { version: '2.13.15' }, { version: '2.13.14' } diff --git a/bin/test-release.sh b/bin/test-release.sh index c0932257..9c7feab0 100755 --- a/bin/test-release.sh +++ b/bin/test-release.sh @@ -15,6 +15,7 @@ coursier fetch \ org.scoverage:scalac-scoverage-plugin_2.13.14:$version \ org.scoverage:scalac-scoverage-plugin_2.13.15:$version \ org.scoverage:scalac-scoverage-plugin_2.13.16:$version \ + org.scoverage:scalac-scoverage-plugin_2.13.17:$version \ org.scoverage:scalac-scoverage-runtime_2.12:$version \ org.scoverage:scalac-scoverage-runtime_2.13:$version \ org.scoverage:scalac-scoverage-runtime_sjs1_2.12:$version \ diff --git a/build.sbt b/build.sbt index 114d51a0..51dc5c9e 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ import sbtcrossproject.CrossType lazy val munitVersion = "1.1.1" lazy val scalametaVersion = "4.9.9" lazy val defaultScala212 = "2.12.20" -lazy val defaultScala213 = "2.13.16" +lazy val defaultScala213 = "2.13.17" lazy val defaultScala3 = "3.3.0" lazy val bin212 = Seq( @@ -17,6 +17,7 @@ lazy val bin212 = lazy val bin213 = Seq( defaultScala213, + "2.13.16", "2.13.15", "2.13.14", "2.13.13", From 3df593bb166d037485f9a60fec5f5399f9bafc05 Mon Sep 17 00:00:00 2001 From: dejan2609 Date: Tue, 23 Sep 2025 10:00:26 +0200 Subject: [PATCH 2/2] fix: only last 3 Scala 2.13.x patch versions should be used --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7e33ac0..49e57bb8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,8 +24,7 @@ jobs: { version: '2.12.18' }, { version: '2.13.17' }, { version: '2.13.16' }, - { version: '2.13.15' }, - { version: '2.13.14' } + { version: '2.13.15' } ] steps: - name: checkout the repo