Skip to content

Commit e78faf7

Browse files
author
exoego
committed
Merge remote-tracking branch 'upstream/master' into fix-196
2 parents 3c76241 + ea2a7e6 commit e78faf7

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jdk:
99
scala:
1010
- 2.10.7
1111
- 2.11.12
12-
- 2.12.8
13-
- 2.13.0
12+
- 2.12.10
13+
- 2.13.1
1414

1515
before_cache:
1616
- find "$HOME/.sbt/" -name '*.lock' -print0 | xargs -0 rm

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@ project you will need to use one of the build plugins:
193193
* [sbt-scoverage](https://github.com/scoverage/sbt-scoverage)
194194
* [gradle-scoverage](https://github.com/scoverage/gradle-scoverage)
195195
* [sbt-coveralls](https://github.com/scoverage/sbt-coveralls)
196+
* [mill-contrib-scoverage](https://www.lihaoyi.com/mill/page/contrib-modules.html#scoverage)
196197
* Upload report to [Codecov](https://codecov.io): [Example Scala Repository](https://github.com/codecov/example-scala)
197198

198199
Scoverage support is available for the following tools:

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ val ScalatestVersion = "3.0.8"
1111
val appSettings = Seq(
1212
organization := Org,
1313
scalaVersion := "2.12.8",
14-
crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.8", "2.13.0"),
14+
crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.10", "2.13.1"),
1515
fork in Test := false,
1616
publishMavenStyle := true,
1717
publishArtifact in Test := false,

scalac-scoverage-plugin/src/test/scala/scoverage/ScoverageCompiler.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ object ScoverageCompiler {
7878
}
7979
}
8080

81-
class ScoverageCompiler(settings: scala.tools.nsc.Settings, reporter: scala.tools.nsc.reporters.Reporter)
82-
extends scala.tools.nsc.Global(settings, reporter) {
81+
class ScoverageCompiler(settings: scala.tools.nsc.Settings, rep: scala.tools.nsc.reporters.Reporter)
82+
extends scala.tools.nsc.Global(settings, rep) {
8383

8484
def addToClassPath(file: File): Unit = {
8585
settings.classpath.value = settings.classpath.value + File.pathSeparator + file.getAbsolutePath

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "1.4.1-SNAPSHOT"
1+
version in ThisBuild := "1.4.2-SNAPSHOT"

0 commit comments

Comments
 (0)