Skip to content

Commit 8efccca

Browse files
committed
Release 3.2.6.0.
1 parent d13c39f commit 8efccca

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.5 and ScalaCheck 1.15.x:
6+
To use it for ScalaTest 3.2.6 and ScalaCheck 1.15.x:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-15" % "3.2.5.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-15" % "3.2.6.0" % "test"
1212
```
1313

1414
Maven:
@@ -17,7 +17,7 @@ Maven:
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
1919
<artifactId>scalacheck-1-15_2.13</artifactId>
20-
<version>3.2.5.0</version>
20+
<version>3.2.6.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
@@ -20,7 +20,7 @@ publishLocal := {}
2020
val sharedSettings = Seq(
2121
name := "scalacheck-1.15",
2222
organization := "org.scalatestplus",
23-
version := "3.2.5.0",
23+
version := "3.2.6.0",
2424
homepage := Some(url("https://github.com/scalatest/scalatestplus-scalacheck")),
2525
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
2626
developers := List(
@@ -39,11 +39,11 @@ val sharedSettings = Seq(
3939
),
4040
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
4141
libraryDependencies ++= Seq(
42-
"org.scalatest" %%% "scalatest-core" % "3.2.5",
42+
"org.scalatest" %%% "scalatest-core" % "3.2.6",
4343
"org.scalacheck" %%% "scalacheck" % "1.15.3",
44-
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.5" % "test",
45-
"org.scalatest" %%% "scalatest-funspec" % "3.2.5" % "test",
46-
"org.scalatest" %%% "scalatest-funsuite" % "3.2.5" % "test"
44+
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.6" % "test",
45+
"org.scalatest" %%% "scalatest-funspec" % "3.2.6" % "test",
46+
"org.scalatest" %%% "scalatest-funsuite" % "3.2.6" % "test"
4747
),
4848
// skip dependency elements with a scope
4949
pomPostProcess := { (node: XmlNode) =>

0 commit comments

Comments
 (0)