From 75ef191aa4924a7caf488b0c5733729a2c34a7b7 Mon Sep 17 00:00:00 2001 From: David Barri Date: Sat, 5 Nov 2016 11:36:18 +1100 Subject: [PATCH] Release 0.8.1 --- README.md | 8 ++++---- build.sbt | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) 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