diff --git a/README.md b/README.md index 3b7bf63..77fdc0d 100644 --- a/README.md +++ b/README.md @@ -26,14 +26,14 @@ Map(609117252 -> None, -339 -> Some(true), 1684851879 -> Some(false), 78379 -> N #### SBT setup ```scala // Property expression, evaluation, assertion. -libraryDependencies += "com.github.japgolly.nyaya" %%% "nyaya-prop" % "0.8.0" +libraryDependencies += "com.github.japgolly.nyaya" %%% "nyaya-prop" % "0.8.1" // Random data generation. -libraryDependencies += "com.github.japgolly.nyaya" %%% "nyaya-gen" % "0.8.0" +libraryDependencies += "com.github.japgolly.nyaya" %%% "nyaya-gen" % "0.8.1" // Property testing with random data. // Property proving. -libraryDependencies += "com.github.japgolly.nyaya" %%% "nyaya-test" % "0.8.0" % "test" +libraryDependencies += "com.github.japgolly.nyaya" %%% "nyaya-test" % "0.8.1" % "test" ```
@@ -43,7 +43,7 @@ libraryDependencies += "com.github.japgolly.nyaya" %%% "nyaya-test" % "0.8.0" %
#### Requires: -* Scala 2.11 +* Scala 2.11+ * Scala.JS 0.6.13+ *(optional)*
diff --git a/build.sbt b/build.sbt index b6d8d72..bf823e9 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -version in ThisBuild := "0.8.1-SNAPSHOT" +version in ThisBuild := "0.8.1" val root = NyayaBuild.root val utilJVM = NyayaBuild.utilJVM