Skip to content

Commit

Permalink
Release 3.2.8.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Apr 21, 2021
1 parent c6736ee commit 7da9f65
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ ScalaTest + ScalaCheck provides integration support between ScalaTest and ScalaC

**Usage**

To use it for ScalaTest 3.2.7 and ScalaCheck 1.15.x:
To use it for ScalaTest 3.2.8 and ScalaCheck 1.15.x:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-15" % "3.2.7.0" % "test"
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-15" % "3.2.8.0" % "test"
```

Maven:
Expand All @@ -17,7 +17,7 @@ Maven:
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>scalacheck-1-15_2.13</artifactId>
<version>3.2.7.0</version>
<version>3.2.8.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def docTask(docDir: File, resDir: File, projectName: String): File = {
val sharedSettings = Seq(
name := "scalacheck-1.15",
organization := "org.scalatestplus",
version := "3.2.7.0",
version := "3.2.8.0",
homepage := Some(url("https://github.com/scalatest/scalatestplus-scalacheck")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Expand All @@ -68,11 +68,11 @@ val sharedSettings = Seq(
),
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
libraryDependencies ++= Seq(
"org.scalatest" %%% "scalatest-core" % "3.2.7",
"org.scalatest" %%% "scalatest-core" % "3.2.8",
"org.scalacheck" %%% "scalacheck" % "1.15.3",
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.7" % "test",
"org.scalatest" %%% "scalatest-funspec" % "3.2.7" % "test",
"org.scalatest" %%% "scalatest-funsuite" % "3.2.7" % "test"
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.8" % "test",
"org.scalatest" %%% "scalatest-funspec" % "3.2.8" % "test",
"org.scalatest" %%% "scalatest-funsuite" % "3.2.8" % "test"
),
// skip dependency elements with a scope
pomPostProcess := { (node: XmlNode) =>
Expand Down Expand Up @@ -157,7 +157,7 @@ lazy val scalatestPlusScalaCheck =
)
)
.jsSettings(
crossScalaVersions := List("2.12.13", defaultScalaVersion, "3.0.0-RC2"),
crossScalaVersions := List("2.12.13", defaultScalaVersion, "3.0.0-RC3"),
sourceGenerators in Compile += {
Def.task {
GenResourcesJSVM.genResources((sourceManaged in Compile).value / "org" / "scalatestplus" / "scalacheck", version.value, scalaVersion.value) ++
Expand All @@ -166,7 +166,7 @@ lazy val scalatestPlusScalaCheck =
}
)
.jvmSettings(
crossScalaVersions := List("2.12.13", defaultScalaVersion, "3.0.0-RC2"),
crossScalaVersions := List("2.12.13", defaultScalaVersion, "3.0.0-RC3"),
Test / scalacOptions ++= (if (isDotty.value) Seq("-language:implicitConversions") else Nil),
sourceGenerators in Compile += {
Def.task {
Expand Down

0 comments on commit 7da9f65

Please sign in to comment.