From 0b970c4970bb6740d87bebdbfe716054d6329e75 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Tue, 14 Sep 2021 22:51:15 +0200 Subject: [PATCH 1/2] Add support for 2.12.15 --- .github/workflows/ci.yml | 1 + bin/test-release.sh | 1 + build.sbt | 11 ++++++++++- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53919413..15942506 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,7 @@ jobs: java: [ '8', '11' ] scala: [ { version: '2.11.12' }, + { version: '2.12.15' }, { version: '2.12.14' }, { version: '2.12.13' }, { version: '2.12.12' }, diff --git a/bin/test-release.sh b/bin/test-release.sh index 168616d9..0f4caf91 100755 --- a/bin/test-release.sh +++ b/bin/test-release.sh @@ -12,6 +12,7 @@ coursier fetch \ org.scoverage:scalac-scoverage-plugin_2.12.12:$version \ org.scoverage:scalac-scoverage-plugin_2.12.13:$version \ org.scoverage:scalac-scoverage-plugin_2.12.14:$version \ + org.scoverage:scalac-scoverage-plugin_2.12.15:$version \ org.scoverage:scalac-scoverage-plugin_2.13.0:$version \ org.scoverage:scalac-scoverage-plugin_2.13.1:$version \ org.scoverage:scalac-scoverage-plugin_2.13.2:$version \ diff --git a/build.sbt b/build.sbt index 302925db..4dfd58ff 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,16 @@ val scalametaVersion = "4.4.20" val defaultScala213 = "2.13.6" val bin211 = Seq("2.11.12") val bin212 = - Seq("2.12.14", "2.12.13", "2.12.12", "2.12.11", "2.12.10", "2.12.9", "2.12.8") + Seq( + "2.12.15", + "2.12.14", + "2.12.13", + "2.12.12", + "2.12.11", + "2.12.10", + "2.12.9", + "2.12.8" + ) val bin213 = Seq( defaultScala213, From 6cbad362eb1b4c099ff8afdcf53ecc1c00938747 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Wed, 15 Sep 2021 17:09:35 +0200 Subject: [PATCH 2/2] Bump version of scalameta to 4.4.28 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 4dfd58ff..1600dd29 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ import sbtcrossproject.CrossProject import sbtcrossproject.CrossType val scalatestVersion = "3.2.9" -val scalametaVersion = "4.4.20" +val scalametaVersion = "4.4.28" val defaultScala213 = "2.13.6" val bin211 = Seq("2.11.12") val bin212 =