Skip to content

Commit 5b74fbd

Browse files
committed
Updated to use ScalaCheck 1.15.1, and adjusted README.md and build.sbt scaladoc settings.
1 parent 0c75b3b commit 5b74fbd

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,5 @@ Please use the following commands to publish to Sonatype:
3030
$ export SCALAJS_VERSION=0.6.33
3131
$ sbt clean +scalatestPlusScalaCheckJS/publishSigned +scalatestPlusScalaCheckJVM/publishSigned scalatestPlusScalaCheckNative/publishSigned
3232
$ export SCALAJS_VERSION=1.3.0
33-
$ sbt ++2.11.12 "project scalatestPlusScalaCheckJS" clean publishSigned
34-
$ sbt ++2.12.12 "project scalatestPlusScalaCheckJS" clean publishSigned
35-
$ sbt ++2.13.3 "project scalatestPlusScalaCheckJS" clean publishSigned
33+
$ sbt clean +scalatestPlusScalaCheckJS/publishSigned
3634
```

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ val sharedSettings = Seq(
2626
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
2727
libraryDependencies ++= Seq(
2828
"org.scalatest" %%% "scalatest-core" % "3.2.3",
29-
"org.scalacheck" %%% "scalacheck" % "1.15.0",
29+
"org.scalacheck" %%% "scalacheck" % "1.15.1",
3030
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.3" % "test",
3131
"org.scalatest" %%% "scalatest-funspec" % "3.2.3" % "test",
3232
"org.scalatest" %%% "scalatest-funsuite" % "3.2.3" % "test"
@@ -77,7 +77,7 @@ val sharedSettings = Seq(
7777
Seq("-doc-title", s"ScalaTest + ScalaCheck ${version.value}")
7878
},
7979
publishArtifact in (Compile, packageDoc) := {
80-
if (scalaBinaryVersion.value startsWith "0.2")
80+
if (scalaBinaryVersion.value startsWith "3.")
8181
false // Temporary disable publishing of doc in dotty, can't get it to build.
8282
else
8383
true

0 commit comments

Comments
 (0)