Skip to content

Commit b16cc8f

Browse files
authored
chore: add support for Scala 2.13.16 (#658)
* chore: add support for Scala 2.13.16 Closes #656 * Update test-release.sh * Update ci.yml
1 parent c17c0c3 commit b16cc8f

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
{ version: '2.12.20' },
2323
{ version: '2.12.19' },
2424
{ version: '2.12.18' },
25+
{ version: '2.13.16' },
2526
{ version: '2.13.15' },
26-
{ version: '2.13.14' },
27-
{ version: '2.13.13' }
27+
{ version: '2.13.14' }
2828
]
2929
steps:
3030
- name: checkout the repo

bin/test-release.sh

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ coursier fetch \
1414
org.scoverage:scalac-scoverage-plugin_2.13.13:$version \
1515
org.scoverage:scalac-scoverage-plugin_2.13.14:$version \
1616
org.scoverage:scalac-scoverage-plugin_2.13.15:$version \
17+
org.scoverage:scalac-scoverage-plugin_2.13.16:$version \
1718
org.scoverage:scalac-scoverage-runtime_2.12:$version \
1819
org.scoverage:scalac-scoverage-runtime_2.13:$version \
1920
org.scoverage:scalac-scoverage-runtime_sjs1_2.12:$version \

build.sbt

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import sbtcrossproject.CrossType
44
lazy val munitVersion = "1.0.4"
55
lazy val scalametaVersion = "4.9.9"
66
lazy val defaultScala212 = "2.12.20"
7-
lazy val defaultScala213 = "2.13.15"
7+
lazy val defaultScala213 = "2.13.16"
88
lazy val defaultScala3 = "3.3.0"
99
lazy val bin212 =
1010
Seq(
@@ -17,6 +17,7 @@ lazy val bin212 =
1717
lazy val bin213 =
1818
Seq(
1919
defaultScala213,
20+
"2.13.15",
2021
"2.13.14",
2122
"2.13.13",
2223
"2.13.12",

0 commit comments

Comments
 (0)