Skip to content

Commit 1f4b15f

Browse files
committed
Updated scalatest version to 3.2.16.
1 parent e4f5c64 commit 1f4b15f

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 + ScalaCheck provides integration support between ScalaTest and ScalaC
33

44
**Usage**
55

6-
To use it for ScalaTest 3.2.15 and ScalaCheck 1.17.x:
6+
To use it for ScalaTest 3.2.16 and ScalaCheck 1.17.x:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-17" % "3.2.15.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-17" % "3.2.16.0" % "test"
1212
```
1313

1414
Maven:
@@ -17,7 +17,7 @@ Maven:
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
1919
<artifactId>scalacheck-1-17_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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def docTask(docDir: File, resDir: File, projectName: String): File = {
4949
val sharedSettings = Seq(
5050
name := "scalacheck-1.17",
5151
organization := "org.scalatestplus",
52-
version := "3.2.15.0",
52+
version := "3.2.16.0",
5353
homepage := Some(url("https://github.com/scalatest/scalatestplus-scalacheck")),
5454
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
5555
developers := List(
@@ -68,11 +68,11 @@ val sharedSettings = Seq(
6868
),
6969
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
7070
libraryDependencies ++= Seq(
71-
"org.scalatest" %%% "scalatest-core" % "3.2.15",
71+
"org.scalatest" %%% "scalatest-core" % "3.2.16",
7272
"org.scalacheck" %%% "scalacheck" % "1.17.0",
73-
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.15" % "test",
74-
"org.scalatest" %%% "scalatest-funspec" % "3.2.15" % "test",
75-
"org.scalatest" %%% "scalatest-funsuite" % "3.2.15" % "test"
73+
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.16" % "test",
74+
"org.scalatest" %%% "scalatest-funspec" % "3.2.16" % "test",
75+
"org.scalatest" %%% "scalatest-funsuite" % "3.2.16" % "test"
7676
),
7777
// skip dependency elements with a scope
7878
pomPostProcess := { (node: XmlNode) =>

0 commit comments

Comments
 (0)