Skip to content

Commit 0e1f3c4

Browse files
committed
Updated to ScalaTest 3.2.19.
1 parent 8c4823a commit 0e1f3c4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
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.18 and Mockito 5.12.x:
6+
To use it for ScalaTest 3.2.19 and Mockito 5.12.x:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "mockito-5-12" % "3.2.18.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "mockito-5-12" % "3.2.19.0" % "test"
1212
```
1313

1414
Maven:
@@ -17,7 +17,7 @@ Maven:
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
1919
<artifactId>mockito-5-12_3</artifactId>
20-
<version>3.2.18.0</version>
20+
<version>3.2.19.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name := "mockito-5.12"
55

66
organization := "org.scalatestplus"
77

8-
version := "3.2.18.0"
8+
version := "3.2.19.0"
99

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

@@ -28,14 +28,14 @@ developers := List(
2828
)
2929
)
3030

31-
scalaVersion := "2.13.12"
31+
scalaVersion := "2.13.13"
3232

33-
crossScalaVersions := List("2.11.12", "2.12.18", "2.13.12", "3.3.1")
33+
crossScalaVersions := List("2.11.12", "2.12.19", "2.13.13", "3.3.3")
3434

3535
libraryDependencies ++= Seq(
3636
"org.mockito" % "mockito-core" % "5.12.0",
37-
"org.scalatest" %% "scalatest-core" % "3.2.18",
38-
"org.scalatest" %% "scalatest-funsuite" % "3.2.18" % "test"
37+
"org.scalatest" %% "scalatest-core" % "3.2.19",
38+
"org.scalatest" %% "scalatest-funsuite" % "3.2.19" % "test"
3939
)
4040

4141
import scala.xml.{Node => XmlNode, NodeSeq => XmlNodeSeq, _}

0 commit comments

Comments
 (0)