Skip to content

Commit 56464f2

Browse files
authored
Add support for 2.12.15 (#370)
* Add support for 2.12.15 * Bump version of scalameta to 4.4.28
1 parent 0b75462 commit 56464f2

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

Diff for: .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.15' },
2223
{ version: '2.12.14' },
2324
{ version: '2.12.13' },
2425
{ version: '2.12.12' },

Diff for: bin/test-release.sh

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ coursier fetch \
1212
org.scoverage:scalac-scoverage-plugin_2.12.12:$version \
1313
org.scoverage:scalac-scoverage-plugin_2.12.13:$version \
1414
org.scoverage:scalac-scoverage-plugin_2.12.14:$version \
15+
org.scoverage:scalac-scoverage-plugin_2.12.15:$version \
1516
org.scoverage:scalac-scoverage-plugin_2.13.0:$version \
1617
org.scoverage:scalac-scoverage-plugin_2.13.1:$version \
1718
org.scoverage:scalac-scoverage-plugin_2.13.2:$version \

Diff for: build.sbt

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

44
val scalatestVersion = "3.2.9"
5-
val scalametaVersion = "4.4.20"
5+
val scalametaVersion = "4.4.28"
66
val defaultScala213 = "2.13.6"
77
val bin211 = Seq("2.11.12")
88
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")
9+
Seq(
10+
"2.12.15",
11+
"2.12.14",
12+
"2.12.13",
13+
"2.12.12",
14+
"2.12.11",
15+
"2.12.10",
16+
"2.12.9",
17+
"2.12.8"
18+
)
1019
val bin213 =
1120
Seq(
1221
defaultScala213,

0 commit comments

Comments
 (0)