Skip to content

Commit

Permalink
Release 3.2.8.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Apr 21, 2021
1 parent a982757 commit 8c1a363
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ ScalaTest + Mockito provides integration support between ScalaTest and Mockito.

**Usage**

To use it for ScalaTest 3.2.7 and Mockito 3.4.x:
To use it for ScalaTest 3.2.8 and Mockito 3.4.x:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "mockito-3-4" % "3.2.7.0" % "test"
libraryDependencies += "org.scalatestplus" %% "mockito-3-4" % "3.2.8.0" % "test"
```

Maven:
Expand All @@ -17,7 +17,7 @@ Maven:
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>mockito-3-4_2.13</artifactId>
<version>3.2.7.0</version>
<version>3.2.8.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name := "mockito-3.4"

organization := "org.scalatestplus"

version := "3.2.7.0"
version := "3.2.8.0"

homepage := Some(url("https://github.com/scalatest/scalatestplus-mockito"))

Expand All @@ -30,12 +30,12 @@ developers := List(

scalaVersion := "2.13.5"

crossScalaVersions := List("2.10.7", "2.11.12", "2.12.13", "2.13.5", "3.0.0-RC2")
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.13", "2.13.5", "3.0.0-RC3")

libraryDependencies ++= Seq(
"org.mockito" % "mockito-core" % "3.4.6",
"org.scalatest" %% "scalatest-core" % "3.2.7",
"org.scalatest" %% "scalatest-funsuite" % "3.2.7" % "test"
"org.scalatest" %% "scalatest-core" % "3.2.8",
"org.scalatest" %% "scalatest-funsuite" % "3.2.8" % "test"
)

Test / scalacOptions ++= (if (isDotty.value)
Expand Down

0 comments on commit 8c1a363

Please sign in to comment.