From 66f5b36972d02d793306ec4225255af85c6fdcf8 Mon Sep 17 00:00:00 2001 From: ckipp01 Date: Sun, 2 May 2021 13:45:05 +0200 Subject: [PATCH] Update scalatest to 3.2.8 --- .github/workflows/ci.yml | 2 +- README.md | 1 - build.sbt | 6 +++--- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56a6b86d..fb01fbe7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: - '*.md' branches: - master - pull_request: + pull_request: jobs: scala: diff --git a/README.md b/README.md index c2a063f4..f65d2f86 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ [![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) [![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) [![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) - [![License](http://img.shields.io/:license-Apache%202-red.svg)](http://www.apache.org/licenses/LICENSE-2.0.txt) scoverage is a free Apache licensed code coverage tool for Scala that offers diff --git a/build.sbt b/build.sbt index 9f827919..426c44d9 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ import sbtcrossproject.CrossType def localSnapshotVersion = "1.4.5-SNAPSHOT" def isCI = System.getenv("CI") != null -val ScalatestVersion = "3.1.1" +val scalatestVersion = "3.2.8" val bin212 = Seq("2.12.13", "2.12.12", "2.12.11", "2.12.10", "2.12.9", "2.12.8") 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( name := "scalac-scoverage-runtime", crossTarget := target.value / s"scala-${scalaVersion.value}", crossVersion := CrossVersion.full, - libraryDependencies += "org.scalatest" %%% "scalatest" % ScalatestVersion % Test + libraryDependencies += "org.scalatest" %%% "scalatest" % scalatestVersion % Test ) .jvmSettings( Test / fork := true @@ -95,7 +95,7 @@ lazy val plugin = crossVersion := CrossVersion.full, libraryDependencies ++= Seq( "org.scala-lang.modules" %% "scala-xml" % "1.2.0", - "org.scalatest" %% "scalatest" % ScalatestVersion % Test + "org.scalatest" %% "scalatest" % scalatestVersion % Test ) ) .settings(