Skip to content

Commit fb60a34

Browse files
committed
Updated to use scalacheck 1.17.0.
1 parent 28891d4 commit fb60a34

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ ScalaTest + ScalaCheck provides integration support between ScalaTest and ScalaC
33

44
**Usage**
55

6-
To use it for ScalaTest 3.2.13 and ScalaCheck 1.16.x:
6+
To use it for ScalaTest 3.2.13 and ScalaCheck 1.14.x:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-16" % "3.2.13.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-17" % "3.2.14.0" % "test"
1212
```
1313

1414
Maven:
1515

1616
```
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
19-
<artifactId>scalacheck-1-16_2.13</artifactId>
19+
<artifactId>scalacheck-1-17_2.13</artifactId>
2020
<version>3.2.14.0</version>
2121
<scope>test</scope>
2222
</dependency>

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def docTask(docDir: File, resDir: File, projectName: String): File = {
4747
}
4848

4949
val sharedSettings = Seq(
50-
name := "scalacheck-1.16",
50+
name := "scalacheck-1.17",
5151
organization := "org.scalatestplus",
5252
version := "3.2.14.0",
5353
homepage := Some(url("https://github.com/scalatest/scalatestplus-scalacheck")),
@@ -69,7 +69,7 @@ val sharedSettings = Seq(
6969
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
7070
libraryDependencies ++= Seq(
7171
"org.scalatest" %%% "scalatest-core" % "3.2.14",
72-
"org.scalacheck" %%% "scalacheck" % "1.16.0",
72+
"org.scalacheck" %%% "scalacheck" % "1.17.0",
7373
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.14" % "test",
7474
"org.scalatest" %%% "scalatest-funspec" % "3.2.14" % "test",
7575
"org.scalatest" %%% "scalatest-funsuite" % "3.2.14" % "test"

0 commit comments

Comments
 (0)