Skip to content

Commit eb9fba9

Browse files
committed
Update to newly released 1.4.3
1 parent 5d298ed commit eb9fba9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ lazy val root = Project("sbt-scoverage", file("."))
2424
libraryDependencies ++= Seq(
2525
"org.scala-lang" % "scala-compiler" % scalaVersion.value % Compile
2626
),
27-
libraryDependencies += "org.scoverage" %% "scalac-scoverage-plugin" % "1.4.3-SNAPSHOT" cross(CrossVersion.full),
27+
libraryDependencies += "org.scoverage" %% "scalac-scoverage-plugin" % "1.4.3" cross(CrossVersion.full),
2828
scalaVersion := "2.12.13",
2929
publishMavenStyle := true,
3030
publishConfiguration := publishConfiguration.value.withOverwrite(true),

src/main/scala/scoverage/ScoverageSbtPlugin.scala

+1-1
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.3-SNAPSHOT"
14+
val DefaultScoverageVersion = "1.4.3"
1515
val autoImport = ScoverageKeys
1616
lazy val ScoveragePluginConfig = config("scoveragePlugin").hide
1717

0 commit comments

Comments
 (0)