Skip to content

Commit

Permalink
Updated to use ScalaCheck 1.15.1, and adjusted README.md and build.sb…
Browse files Browse the repository at this point in the history
…t scaladoc settings.
  • Loading branch information
cheeseng committed Nov 7, 2020
1 parent 0c75b3b commit 5b74fbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,5 @@ Please use the following commands to publish to Sonatype:
$ export SCALAJS_VERSION=0.6.33
$ sbt clean +scalatestPlusScalaCheckJS/publishSigned +scalatestPlusScalaCheckJVM/publishSigned scalatestPlusScalaCheckNative/publishSigned
$ export SCALAJS_VERSION=1.3.0
$ sbt ++2.11.12 "project scalatestPlusScalaCheckJS" clean publishSigned
$ sbt ++2.12.12 "project scalatestPlusScalaCheckJS" clean publishSigned
$ sbt ++2.13.3 "project scalatestPlusScalaCheckJS" clean publishSigned
$ sbt clean +scalatestPlusScalaCheckJS/publishSigned
```
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ val sharedSettings = Seq(
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
libraryDependencies ++= Seq(
"org.scalatest" %%% "scalatest-core" % "3.2.3",
"org.scalacheck" %%% "scalacheck" % "1.15.0",
"org.scalacheck" %%% "scalacheck" % "1.15.1",
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.3" % "test",
"org.scalatest" %%% "scalatest-funspec" % "3.2.3" % "test",
"org.scalatest" %%% "scalatest-funsuite" % "3.2.3" % "test"
Expand Down Expand Up @@ -77,7 +77,7 @@ val sharedSettings = Seq(
Seq("-doc-title", s"ScalaTest + ScalaCheck ${version.value}")
},
publishArtifact in (Compile, packageDoc) := {
if (scalaBinaryVersion.value startsWith "0.2")
if (scalaBinaryVersion.value startsWith "3.")
false // Temporary disable publishing of doc in dotty, can't get it to build.
else
true
Expand Down

0 comments on commit 5b74fbd

Please sign in to comment.