Skip to content

Commit 7da9f65

Browse files
committed
Release 3.2.8.0.
1 parent c6736ee commit 7da9f65

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

44
**Usage**
55

6-
To use it for ScalaTest 3.2.7 and ScalaCheck 1.15.x:
6+
To use it for ScalaTest 3.2.8 and ScalaCheck 1.15.x:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-15" % "3.2.7.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-15" % "3.2.8.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.7.0</version>
20+
<version>3.2.8.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
@@ -49,7 +49,7 @@ def docTask(docDir: File, resDir: File, projectName: String): File = {
4949
val sharedSettings = Seq(
5050
name := "scalacheck-1.15",
5151
organization := "org.scalatestplus",
52-
version := "3.2.7.0",
52+
version := "3.2.8.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.7",
71+
"org.scalatest" %%% "scalatest-core" % "3.2.8",
7272
"org.scalacheck" %%% "scalacheck" % "1.15.3",
73-
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.7" % "test",
74-
"org.scalatest" %%% "scalatest-funspec" % "3.2.7" % "test",
75-
"org.scalatest" %%% "scalatest-funsuite" % "3.2.7" % "test"
73+
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.8" % "test",
74+
"org.scalatest" %%% "scalatest-funspec" % "3.2.8" % "test",
75+
"org.scalatest" %%% "scalatest-funsuite" % "3.2.8" % "test"
7676
),
7777
// skip dependency elements with a scope
7878
pomPostProcess := { (node: XmlNode) =>
@@ -157,7 +157,7 @@ lazy val scalatestPlusScalaCheck =
157157
)
158158
)
159159
.jsSettings(
160-
crossScalaVersions := List("2.12.13", defaultScalaVersion, "3.0.0-RC2"),
160+
crossScalaVersions := List("2.12.13", defaultScalaVersion, "3.0.0-RC3"),
161161
sourceGenerators in Compile += {
162162
Def.task {
163163
GenResourcesJSVM.genResources((sourceManaged in Compile).value / "org" / "scalatestplus" / "scalacheck", version.value, scalaVersion.value) ++
@@ -166,7 +166,7 @@ lazy val scalatestPlusScalaCheck =
166166
}
167167
)
168168
.jvmSettings(
169-
crossScalaVersions := List("2.12.13", defaultScalaVersion, "3.0.0-RC2"),
169+
crossScalaVersions := List("2.12.13", defaultScalaVersion, "3.0.0-RC3"),
170170
Test / scalacOptions ++= (if (isDotty.value) Seq("-language:implicitConversions") else Nil),
171171
sourceGenerators in Compile += {
172172
Def.task {

0 commit comments

Comments
 (0)