diff --git a/README.md b/README.md index 1a0647635..a889673ea 100644 --- a/README.md +++ b/README.md @@ -157,18 +157,18 @@ scala> val u1: String Refined Url = "htp://example.com" ## Using refined -The latest version of the library is 0.8.1, which is available for Scala and +The latest version of the library is 0.8.2, which is available for Scala and [Scala.js][scala.js] version 2.10, 2.11, and 2.12. If you're using sbt, add the following to your build: ```sbt libraryDependencies ++= Seq( - "eu.timepit" %% "refined" % "0.8.1", - "eu.timepit" %% "refined-pureconfig" % "0.8.1", // optional, JVM-only - "eu.timepit" %% "refined-scalacheck" % "0.8.1", // optional - "eu.timepit" %% "refined-scalaz" % "0.8.1", // optional - "eu.timepit" %% "refined-scodec" % "0.8.1" // optional + "eu.timepit" %% "refined" % "0.8.2", + "eu.timepit" %% "refined-pureconfig" % "0.8.2", // optional, JVM-only + "eu.timepit" %% "refined-scalacheck" % "0.8.2", // optional + "eu.timepit" %% "refined-scalaz" % "0.8.2", // optional + "eu.timepit" %% "refined-scodec" % "0.8.2" // optional ) ``` @@ -177,7 +177,7 @@ For Scala.js just replace `%%` with `%%%` above. Instructions for Maven and other build tools are available at [search.maven.org][search.maven]. Release notes for the latest version are available in -[0.8.1.markdown](https://github.com/fthomas/refined/blob/master/notes/0.8.1.markdown). +[0.8.2.markdown](https://github.com/fthomas/refined/blob/master/notes/0.8.2.markdown). The optional dependencies are add-on libraries that provide support for other tag types or integration of refined types in other libraries: diff --git a/notes/0.8.2.markdown b/notes/0.8.2.markdown index fe4f7aede..676c80d40 100644 --- a/notes/0.8.2.markdown +++ b/notes/0.8.2.markdown @@ -15,3 +15,5 @@ [#283]: https://github.com/fthomas/refined/pull/283 [#284]: https://github.com/fthomas/refined/pull/284 [#288]: https://github.com/fthomas/refined/pull/288 + +Released on 2017-06-02 diff --git a/version.sbt b/version.sbt index 05d6fc967..3f0ac0890 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.8.2-SNAPSHOT" +version in ThisBuild := "0.8.2"