Skip to content

Commit 05ee616

Browse files
authored
Update scalatest to 3.2.8 (#320)
1 parent d7e659f commit 05ee616

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- '*.md'
99
branches:
1010
- master
11-
pull_request:
11+
pull_request:
1212

1313
jobs:
1414
scala:

Diff for: README.md

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
[![Maven Central](https://img.shields.io/maven-central/v/org.scoverage/scalac-scoverage-plugin_2.11.svg?label=latest%20release%20for%202.11)](http://search.maven.org/#search|ga|1|g%3A%22org.scoverage%22%20AND%20a%3A%22scalac-scoverage-plugin_2.11%22)
77
[![Maven Central](https://img.shields.io/maven-central/v/org.scoverage/scalac-scoverage-plugin_2.12.13.svg?label=latest%202.12%20Scala%20support%20[2.12.13]%20and%20latest%20version)](http://search.maven.org/#search|ga|1|g%3A%22org.scoverage%22%20AND%20a%3A%22scalac-scoverage-plugin_2.12.13%22)
88
[![Maven Central](https://img.shields.io/maven-central/v/org.scoverage/scalac-scoverage-plugin_2.13.5.svg?label=latest%202.13%20Scala%20support%20[2.13.5]%20and%20version)](http://search.maven.org/#search|ga|1|g%3A%22org.scoverage%22%20AND%20a%3A%22scalac-scoverage-plugin_2.13.5%22)
9-
109
[![License](http://img.shields.io/:license-Apache%202-red.svg)](http://www.apache.org/licenses/LICENSE-2.0.txt)
1110

1211
scoverage is a free Apache licensed code coverage tool for Scala that offers

Diff for: build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import sbtcrossproject.CrossType
44
def localSnapshotVersion = "1.4.5-SNAPSHOT"
55
def isCI = System.getenv("CI") != null
66

7-
val ScalatestVersion = "3.1.1"
7+
val scalatestVersion = "3.2.8"
88

99
val bin212 = Seq("2.12.13", "2.12.12", "2.12.11", "2.12.10", "2.12.9", "2.12.8")
1010
val bin213 = Seq("2.13.5", "2.13.4", "2.13.3", "2.13.2", "2.13.1", "2.13.0")
@@ -72,7 +72,7 @@ lazy val runtime = CrossProject(
7272
name := "scalac-scoverage-runtime",
7373
crossTarget := target.value / s"scala-${scalaVersion.value}",
7474
crossVersion := CrossVersion.full,
75-
libraryDependencies += "org.scalatest" %%% "scalatest" % ScalatestVersion % Test
75+
libraryDependencies += "org.scalatest" %%% "scalatest" % scalatestVersion % Test
7676
)
7777
.jvmSettings(
7878
Test / fork := true
@@ -95,7 +95,7 @@ lazy val plugin =
9595
crossVersion := CrossVersion.full,
9696
libraryDependencies ++= Seq(
9797
"org.scala-lang.modules" %% "scala-xml" % "1.2.0",
98-
"org.scalatest" %% "scalatest" % ScalatestVersion % Test
98+
"org.scalatest" %% "scalatest" % scalatestVersion % Test
9999
)
100100
)
101101
.settings(

0 commit comments

Comments
 (0)