Skip to content

Commit 50685f4

Browse files
committed
Release 3.2.9.0.
1 parent 469f36e commit 50685f4

File tree

3 files changed

+14
-14
lines changed

3 files changed

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

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-15" % "3.2.8.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-15" % "3.2.9.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.8.0</version>
20+
<version>3.2.9.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

build.sbt

Lines changed: 10 additions & 10 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.8.0",
52+
version := "3.2.9.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.8",
72-
"org.scalacheck" %%% "scalacheck" % "1.15.3",
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"
71+
"org.scalatest" %%% "scalatest-core" % "3.2.9",
72+
"org.scalacheck" %%% "scalacheck" % "1.15.4",
73+
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.9" % "test",
74+
"org.scalatest" %%% "scalatest-funspec" % "3.2.9" % "test",
75+
"org.scalatest" %%% "scalatest-funsuite" % "3.2.9" % "test"
7676
),
7777
// skip dependency elements with a scope
7878
pomPostProcess := { (node: XmlNode) =>
@@ -117,15 +117,15 @@ val sharedSettings = Seq(
117117
(sourceDirectory in Compile).value,
118118
name.value),
119119
scalacOptions in (Compile, doc) := {
120-
if (scalaBinaryVersion.value startsWith "3.0")
120+
if (scalaBinaryVersion.value startsWith "3")
121121
Seq.empty
122122
else
123123
Seq("-doc-title", s"ScalaTest + ScalaCheck ${version.value}",
124124
"-sourcepath", baseDirectory.value.getParentFile().getAbsolutePath(),
125125
"-doc-source-url", s"https://github.com/scalatest/releases-source/blob/main/scalatestplus-scalacheck/${version.value}€{FILE_PATH}.scala")
126126
},
127127
publishArtifact in (Compile, packageDoc) := {
128-
if (scalaBinaryVersion.value startsWith "3.")
128+
if (scalaBinaryVersion.value startsWith "3")
129129
false // Temporary disable publishing of doc in dotty, can't get it to build.
130130
else
131131
true
@@ -157,7 +157,7 @@ lazy val scalatestPlusScalaCheck =
157157
)
158158
)
159159
.jsSettings(
160-
crossScalaVersions := List("2.12.13", defaultScalaVersion, "3.0.0-RC3"),
160+
crossScalaVersions := List("2.12.13", defaultScalaVersion, "3.0.0"),
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-RC3"),
169+
crossScalaVersions := List("2.12.13", defaultScalaVersion, "3.0.0"),
170170
Test / scalacOptions ++= (if (isDotty.value) Seq("-language:implicitConversions") else Nil),
171171
sourceGenerators in Compile += {
172172
Def.task {

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1")
1212

1313
addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.6")
1414

15-
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.4")
15+
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.5")

0 commit comments

Comments
 (0)