Skip to content

Commit 3f8bad5

Browse files
committed
Bumped up scalatest version to 3.2.16.0.
1 parent e4e11e6 commit 3f8bad5

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

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

44
**Usage**
55

6-
To use it for ScalaTest 3.2.15 and JUnit 4.13:
6+
To use it for ScalaTest 3.2.16 and JUnit 4.13:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.2.15.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.2.16.0" % "test"
1212
```
1313

1414
Maven:
@@ -17,7 +17,7 @@ Maven:
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
1919
<artifactId>junit-4-13_2.13</artifactId>
20-
<version>3.2.15.0</version>
20+
<version>3.2.16.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

build.sbt

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

66
organization := "org.scalatestplus"
77

8-
version := "3.2.15.0"
8+
version := "3.2.16.0"
99

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

@@ -46,12 +46,12 @@ Compile / unmanagedSourceDirectories ++= {
4646
}
4747

4848
libraryDependencies ++= Seq(
49-
"org.scalatest" %% "scalatest-core" % "3.2.15",
49+
"org.scalatest" %% "scalatest-core" % "3.2.16",
5050
"junit" % "junit" % "4.13.2",
51-
"org.scalatest" %% "scalatest-wordspec" % "3.2.15" % "test",
52-
"org.scalatest" %% "scalatest-funspec" % "3.2.15" % "test",
53-
"org.scalatest" %% "scalatest-funsuite" % "3.2.15" % "test",
54-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.15" % "test"
51+
"org.scalatest" %% "scalatest-wordspec" % "3.2.16" % "test",
52+
"org.scalatest" %% "scalatest-funspec" % "3.2.16" % "test",
53+
"org.scalatest" %% "scalatest-funsuite" % "3.2.16" % "test",
54+
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.16" % "test"
5555
)
5656

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

0 commit comments

Comments
 (0)