Skip to content

Commit 2d7083b

Browse files
committed
feat: add support for 2.12.19
closes #601
1 parent d7cbfd4 commit 2d7083b

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
os: [ 'ubuntu-latest', 'windows-latest' ]
2020
java: ['8', '17']
2121
scala: [
22+
{ version: '2.12.19' },
2223
{ version: '2.12.18' },
2324
{ version: '2.12.17' },
24-
{ version: '2.12.16' },
2525
{ version: '2.13.12' },
2626
{ version: '2.13.11' },
2727
{ version: '2.13.10' },

bin/test-release.sh

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ coursier fetch \
1212
org.scoverage:scalac-scoverage-plugin_2.12.15:$version \
1313
org.scoverage:scalac-scoverage-plugin_2.12.16:$version \
1414
org.scoverage:scalac-scoverage-plugin_2.12.17:$version \
15+
org.scoverage:scalac-scoverage-plugin_2.12.18:$version \
16+
org.scoverage:scalac-scoverage-plugin_2.12.19:$version \
1517
org.scoverage:scalac-scoverage-plugin_2.13.5:$version \
1618
org.scoverage:scalac-scoverage-plugin_2.13.5:$version \
1719
org.scoverage:scalac-scoverage-plugin_2.13.6:$version \

build.sbt

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ import sbtcrossproject.CrossProject
22
import sbtcrossproject.CrossType
33

44
lazy val munitVersion = "0.7.29"
5-
lazy val scalametaVersion = "4.7.8"
6-
lazy val defaultScala212 = "2.12.18"
5+
lazy val scalametaVersion = "4.9.0"
6+
lazy val defaultScala212 = "2.12.19"
77
lazy val defaultScala213 = "2.13.12"
88
lazy val defaultScala3 = "3.3.0"
99
lazy val bin212 =
1010
Seq(
1111
defaultScala212,
12+
"2.12.18",
1213
"2.12.17",
1314
"2.12.16",
1415
"2.12.15",

0 commit comments

Comments
 (0)