From 0864c61e0c49f656164ead71706be92e926f3aa2 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Tue, 2 Nov 2021 15:51:29 +0100 Subject: [PATCH] Add support for 2.13.7 --- .github/workflows/ci.yml | 1 + README.md | 2 +- bin/test-release.sh | 1 + build.sbt | 5 +++-- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b927f0f1..78268177 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,6 +28,7 @@ jobs: { version: '2.12.10' }, { version: '2.12.9' }, { version: '2.12.8' }, + { version: '2.13.7' }, { version: '2.13.6' }, { version: '2.13.5' }, { version: '2.13.4' }, diff --git a/README.md b/README.md index f7d4577d..f8a7e2ae 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![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) [![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) [![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) -[![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) +[![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) [![License](http://img.shields.io/:license-Apache%202-red.svg)](http://www.apache.org/licenses/LICENSE-2.0.txt) scoverage is a free Apache licensed code coverage tool for Scala that offers diff --git a/bin/test-release.sh b/bin/test-release.sh index 0f4caf91..1a501c99 100755 --- a/bin/test-release.sh +++ b/bin/test-release.sh @@ -21,6 +21,7 @@ coursier fetch \ org.scoverage:scalac-scoverage-plugin_2.13.5:$version \ org.scoverage:scalac-scoverage-plugin_2.13.5:$version \ org.scoverage:scalac-scoverage-plugin_2.13.6:$version \ + org.scoverage:scalac-scoverage-plugin_2.13.7:$version \ org.scoverage:scalac-scoverage-runtime_2.11:$version \ org.scoverage:scalac-scoverage-runtime_2.12:$version \ org.scoverage:scalac-scoverage-runtime_2.13:$version \ diff --git a/build.sbt b/build.sbt index bf146526..59c64af5 100644 --- a/build.sbt +++ b/build.sbt @@ -2,8 +2,8 @@ import sbtcrossproject.CrossProject import sbtcrossproject.CrossType val scalatestVersion = "3.2.10" -val scalametaVersion = "4.4.28" -val defaultScala213 = "2.13.6" +val scalametaVersion = "4.4.30" +val defaultScala213 = "2.13.7" val bin211 = Seq("2.11.12") val bin212 = Seq( @@ -19,6 +19,7 @@ val bin212 = val bin213 = Seq( defaultScala213, + "2.13.6", "2.13.5", "2.13.4", "2.13.3",