Skip to content

Commit 732c4c1

Browse files
committed
dep: bump to scoverage 2.0
1 parent a4a7ce7 commit 732c4c1

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.scoverage/sbt-scoverage/badge.svg?kill_cache=1)](https://search.maven.org/artifact/org.scoverage/sbt-scoverage/)
55
[![License](http://img.shields.io/:license-Apache%202-red.svg)](http://www.apache.org/licenses/LICENSE-2.0.txt)
66

7-
sbt-scoverage is a plugin for sbt that integrates the scoverage code coverage
8-
library. Find out more about
9-
[scoverage here](https://github.com/scoverage/scalac-scoverage-plugin).
7+
sbt-scoverage is an sbt plugin that offers support for Scala code coverage using
8+
[scoverage](https://github.com/scoverage/scalac-scoverage-plugin). This plugin
9+
supports Scala 2.12, 2.13, and 3.
10+
11+
*NOTE*: that ScalaJS and Scala Native support is limited to Scala 2.
1012

1113
## Setup
1214

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name := "sbt-scoverage"
22

33
import sbt.ScriptedPlugin.autoImport.scriptedLaunchOpts
44

5-
lazy val scoverageVersion = "2.0.0-RC2"
5+
lazy val scoverageVersion = "2.0.0"
66

77
inThisBuild(
88
List(

src/sbt-test/scoverage/scala3-bad/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version := "0.1"
22

3-
scalaVersion := "3.2.0-RC1-bin-20220523-6783853-NIGHTLY" // TODO: Should be updated to stable version on 3.2.0-RC1 release
3+
scalaVersion := "3.2.0-RC1"
44

55
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test
66

src/sbt-test/scoverage/scala3-good/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version := "0.1"
22

3-
scalaVersion := "3.2.0-RC1-bin-20220523-6783853-NIGHTLY" // TODO: Should be updated to stable version on 3.2.0-RC1 release
3+
scalaVersion := "3.2.0-RC1"
44

55
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test
66

0 commit comments

Comments
 (0)