Skip to content

Commit 1d749ee

Browse files
authored
feat: add support for 2.12.19 (#602)
* feat: add support for 2.12.19 closes #601 * feat: also add support for 2.13.13
1 parent d7cbfd4 commit 1d749ee

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ 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' },
25+
{ version: '2.13.13' },
2526
{ version: '2.13.12' },
26-
{ version: '2.13.11' },
27-
{ version: '2.13.10' },
27+
{ version: '2.13.11' }
2828
]
2929
steps:
3030
- name: checkout the repo

bin/test-release.sh

+3
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 \
@@ -21,6 +23,7 @@ coursier fetch \
2123
org.scoverage:scalac-scoverage-plugin_2.13.10:$version \
2224
org.scoverage:scalac-scoverage-plugin_2.13.11:$version \
2325
org.scoverage:scalac-scoverage-plugin_2.13.12:$version \
26+
org.scoverage:scalac-scoverage-plugin_2.13.13:$version \
2427
org.scoverage:scalac-scoverage-runtime_2.12:$version \
2528
org.scoverage:scalac-scoverage-runtime_2.13:$version \
2629
org.scoverage:scalac-scoverage-runtime_sjs1_2.12:$version \

build.sbt

+5-3
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"
7-
lazy val defaultScala213 = "2.13.12"
5+
lazy val scalametaVersion = "4.9.0"
6+
lazy val defaultScala212 = "2.12.19"
7+
lazy val defaultScala213 = "2.13.13"
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",
@@ -21,6 +22,7 @@ lazy val bin212 =
2122
lazy val bin213 =
2223
Seq(
2324
defaultScala213,
25+
"2.13.12",
2426
"2.13.11",
2527
"2.13.10",
2628
"2.13.9",

0 commit comments

Comments
 (0)