Skip to content

Commit cb777fc

Browse files
authored
Add support for 2.12.14 (#347)
1 parent 0e6613c commit cb777fc

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
java: [ '8', '11' ]
2020
scala: [
2121
{ version: '2.11.12' },
22+
{ version: '2.12.14' },
2223
{ version: '2.12.13' },
2324
{ version: '2.12.12' },
2425
{ version: '2.12.11' },

bin/test-release.sh

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ coursier fetch \
1010
org.scoverage:scalac-scoverage-plugin_2.12.10:$version \
1111
org.scoverage:scalac-scoverage-plugin_2.12.11:$version \
1212
org.scoverage:scalac-scoverage-plugin_2.12.12:$version \
13+
org.scoverage:scalac-scoverage-plugin_2.12.13:$version \
14+
org.scoverage:scalac-scoverage-plugin_2.12.14:$version \
1315
org.scoverage:scalac-scoverage-plugin_2.13.0:$version \
1416
org.scoverage:scalac-scoverage-plugin_2.13.1:$version \
1517
org.scoverage:scalac-scoverage-plugin_2.13.2:$version \

build.sbt

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

44
val scalatestVersion = "3.2.9"
5-
val scalametaVersion = "4.4.18"
5+
val scalametaVersion = "4.4.20"
66
val defaultScala213 = "2.13.6"
77
val bin211 = Seq("2.11.12")
8-
val bin212 = Seq("2.12.13", "2.12.12", "2.12.11", "2.12.10", "2.12.9", "2.12.8")
8+
val bin212 =
9+
Seq("2.12.14", "2.12.13", "2.12.12", "2.12.11", "2.12.10", "2.12.9", "2.12.8")
910
val bin213 =
1011
Seq(
1112
defaultScala213,

0 commit comments

Comments
 (0)