Skip to content

Commit 4ce6cc1

Browse files
authored
Add support for 2.13.7 (#412)
1 parent 68b687a commit 4ce6cc1

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

Diff for: .github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
{ version: '2.12.10' },
2929
{ version: '2.12.9' },
3030
{ version: '2.12.8' },
31+
{ version: '2.13.7' },
3132
{ version: '2.13.6' },
3233
{ version: '2.13.5' },
3334
{ version: '2.13.4' },

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Maven Central](https://img.shields.io/maven-central/v/org.scoverage/scalac-scoverage-plugin_2.10.svg?label=latest%20release%20for%202.10)](http://search.maven.org/#search|ga|1|g%3A%22org.scoverage%22%20AND%20a%3A%22scalac-scoverage-plugin_2.10%22)
66
[![Maven Central](https://img.shields.io/maven-central/v/org.scoverage/scalac-scoverage-plugin_2.11.12.svg?label=latest%202.11%20Scala%20support%20[2.11.12]%20and%20latest%20version)](http://search.maven.org/#search|ga|1|g%3A%22org.scoverage%22%20AND%20a%3A%22scalac-scoverage-plugin_2.11.12%22)
77
[![Maven Central](https://img.shields.io/maven-central/v/org.scoverage/scalac-scoverage-plugin_2.12.14.svg?label=2.12%20Scala%20support%20)](http://search.maven.org/#search|ga|1|g%3A%22org.scoverage%22%20AND%20a%3A%22scalac-scoverage-plugin_2.12.15%22)
8-
[![Maven Central](https://img.shields.io/maven-central/v/org.scoverage/scalac-scoverage-plugin_2.13.6.svg?label=2.13%20Scala%20support%20)](http://search.maven.org/#search|ga|1|g%3A%22org.scoverage%22%20AND%20a%3A%22scalac-scoverage-plugin_2.13.6%22)
8+
[![Maven Central](https://img.shields.io/maven-central/v/org.scoverage/scalac-scoverage-plugin_2.13.7.svg?label=2.13%20Scala%20support%20)](http://search.maven.org/#search|ga|1|g%3A%22org.scoverage%22%20AND%20a%3A%22scalac-scoverage-plugin_2.13.6%22)
99
[![License](http://img.shields.io/:license-Apache%202-red.svg)](http://www.apache.org/licenses/LICENSE-2.0.txt)
1010

1111
scoverage is a free Apache licensed code coverage tool for Scala that offers

Diff for: bin/test-release.sh

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ coursier fetch \
2121
org.scoverage:scalac-scoverage-plugin_2.13.5:$version \
2222
org.scoverage:scalac-scoverage-plugin_2.13.5:$version \
2323
org.scoverage:scalac-scoverage-plugin_2.13.6:$version \
24+
org.scoverage:scalac-scoverage-plugin_2.13.7:$version \
2425
org.scoverage:scalac-scoverage-runtime_2.11:$version \
2526
org.scoverage:scalac-scoverage-runtime_2.12:$version \
2627
org.scoverage:scalac-scoverage-runtime_2.13:$version \

Diff for: build.sbt

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

44
val scalatestVersion = "3.2.10"
5-
val scalametaVersion = "4.4.28"
6-
val defaultScala213 = "2.13.6"
5+
val scalametaVersion = "4.4.30"
6+
val defaultScala213 = "2.13.7"
77
val bin211 = Seq("2.11.12")
88
val bin212 =
99
Seq(
@@ -19,6 +19,7 @@ val bin212 =
1919
val bin213 =
2020
Seq(
2121
defaultScala213,
22+
"2.13.6",
2223
"2.13.5",
2324
"2.13.4",
2425
"2.13.3",

0 commit comments

Comments
 (0)