Skip to content

Commit 48eb96b

Browse files
committed
Updated to use scalatest version 3.2.14, and release version to 3.2.14.0.
1 parent 16fd86f commit 48eb96b

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.13 and JUnit 4.13:
6+
To use it for ScalaTest 3.2.14 and JUnit 4.13:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.2.13.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.2.14.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.13.0</version>
20+
<version>3.2.14.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.13.0"
8+
version := "3.2.14.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.13",
49+
"org.scalatest" %% "scalatest-core" % "3.2.14",
5050
"junit" % "junit" % "4.13.2",
51-
"org.scalatest" %% "scalatest-wordspec" % "3.2.13" % "test",
52-
"org.scalatest" %% "scalatest-funspec" % "3.2.13" % "test",
53-
"org.scalatest" %% "scalatest-funsuite" % "3.2.13" % "test",
54-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.13" % "test"
51+
"org.scalatest" %% "scalatest-wordspec" % "3.2.14" % "test",
52+
"org.scalatest" %% "scalatest-funspec" % "3.2.14" % "test",
53+
"org.scalatest" %% "scalatest-funsuite" % "3.2.14" % "test",
54+
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.14" % "test"
5555
)
5656

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

0 commit comments

Comments
 (0)