Skip to content

Commit d8a6255

Browse files
committed
Preparation to 1.6.0-M3 version release, with Scala 2.13.0-M3 support
1 parent 72af967 commit d8a6255

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ discussion on scoverage.
1515

1616
Make sure your SBT version in project/build.properties:
1717
```
18-
sbt.version = 0.13.16
18+
sbt.version = 0.13.17
1919
```
2020
or
2121
```
22-
sbt.version = 1.0.0
22+
sbt.version = 1.1.1
2323
```
2424

2525
Add the plugin in project/plugins.sbt:

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ resolvers ++= {
1010
if (isSnapshot.value) Seq(Resolver.sonatypeRepo("snapshots")) else Nil
1111
}
1212

13-
libraryDependencies += "org.scoverage" %% "scalac-scoverage-plugin" % "1.4.0-M2"
13+
libraryDependencies += "org.scoverage" %% "scalac-scoverage-plugin" % "1.4.0-M3"
1414

1515
publishMavenStyle := true
1616

src/main/scala/scoverage/ScoverageSbtPlugin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ object ScoverageSbtPlugin extends AutoPlugin {
1111
val ScalacRuntimeArtifact = "scalac-scoverage-runtime"
1212
val ScalacPluginArtifact = "scalac-scoverage-plugin"
1313
// this should match the version defined in build.sbt
14-
val DefaultScoverageVersion = "1.4.0-M2"
14+
val DefaultScoverageVersion = "1.4.0-M3"
1515
val autoImport = ScoverageKeys
1616
lazy val ScoveragePluginConfig = config("scoveragePlugin").hide
1717

0 commit comments

Comments
 (0)