Skip to content

Commit 312f2ad

Browse files
committed
Bumped up versions for ScalaTest 3.2.17.
1 parent 317119a commit 312f2ad

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44
**Usage**
55

6-
To use it for ScalaTest 3.2.16 and EasyMock 5.1.x:
6+
To use it for ScalaTest 3.2.17 and EasyMock 5.1.x:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "easymock-5-1" % "3.2.16.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "easymock-5-1" % "3.2.17.0" % "test"
1212
```
1313

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

build.sbt

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

66
organization := "org.scalatestplus"
77

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

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

@@ -26,18 +26,18 @@ developers := List(
2626
)
2727
)
2828

29-
scalaVersion := "2.13.10"
29+
scalaVersion := "2.13.11"
3030

31-
crossScalaVersions := List("2.11.12", "2.12.17", "2.13.10", "3.1.3")
31+
crossScalaVersions := List("2.11.12", "2.12.17", "2.13.11", "3.1.3")
3232

3333
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
3434

3535
libraryDependencies ++= Seq(
3636
"org.easymock" % "easymock" % "5.1.0",
37-
"org.scalatest" %% "scalatest-core" % "3.2.16",
38-
"org.scalatest" %% "scalatest-funsuite" % "3.2.16" % "test",
39-
"org.scalatest" %% "scalatest-flatspec" % "3.2.16" % "test",
40-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.16" % "test"
37+
"org.scalatest" %% "scalatest-core" % "3.2.17",
38+
"org.scalatest" %% "scalatest-funsuite" % "3.2.17" % "test",
39+
"org.scalatest" %% "scalatest-flatspec" % "3.2.17" % "test",
40+
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.17" % "test"
4141
)
4242

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

0 commit comments

Comments
 (0)