Skip to content

Commit 1d03a56

Browse files
committed
Adjusted for 3.2.2.0-M1.
1 parent ca295f3 commit 1d03a56

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ ScalaTest + Mockito provides integration support between ScalaTest and Mockito.
33

44
**Usage**
55

6-
To use it for ScalaTest 3.2.1 and Mockito 3.3.x:
6+
To use it for ScalaTest 3.2.2 and Mockito 3.3.x:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "mockito-3-3" % "3.2.1.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "mockito-3-3" % "3.2.2.0" % "test"
1212
```
1313

1414
Maven:
@@ -17,7 +17,7 @@ Maven:
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
1919
<artifactId>mockito-3-3</artifactId>
20-
<version>3.2.1.0</version>
20+
<version>3.2.2.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name := "mockito-3.3"
22

33
organization := "org.scalatestplus"
44

5-
version := "3.2.1.0"
5+
version := "3.2.2.0-M1"
66

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

@@ -27,8 +27,8 @@ crossScalaVersions := List("2.10.7", "2.11.12", "2.12.12", "2.13.3", "0.26.0-RC1
2727

2828
libraryDependencies ++= Seq(
2929
"org.mockito" % "mockito-core" % "3.3.3",
30-
"org.scalatest" %% "scalatest-core" % "3.2.1",
31-
"org.scalatest" %% "scalatest-funsuite" % "3.2.1" % "test"
30+
"org.scalatest" %% "scalatest-core" % "3.2.2-M1",
31+
"org.scalatest" %% "scalatest-funsuite" % "3.2.2-M1" % "test"
3232
)
3333

3434
Test / scalacOptions ++= (if (isDotty.value) Seq("-language:implicitConversions") else Nil)

0 commit comments

Comments
 (0)