From abdf119dbaf42708c71c7f5958558c368f41be48 Mon Sep 17 00:00:00 2001 From: "Frank S. Thomas" Date: Fri, 17 Jun 2016 23:12:03 +0200 Subject: [PATCH] Setting version to 0.5.0 --- README.md | 12 ++++++------ notes/0.5.0.markdown | 2 ++ version.sbt | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 87fe0fd64..11d04afc9 100644 --- a/README.md +++ b/README.md @@ -154,16 +154,16 @@ scala> val u1: String Refined Url = "htp://example.com" ## Using refined -The latest version of the library is 0.4.0, which is available for Scala and +The latest version of the library is 0.5.0, which is available for Scala and [Scala.js][scala.js] version 2.10 and 2.11. If you're using sbt, add the following to your build: libraryDependencies ++= Seq( - "eu.timepit" %% "refined" % "0.4.0", - "eu.timepit" %% "refined-scalaz" % "0.4.0", // optional - "eu.timepit" %% "refined-scodec" % "0.4.0", // optional - "eu.timepit" %% "refined-scalacheck" % "0.4.0" % "test" // optional + "eu.timepit" %% "refined" % "0.5.0", + "eu.timepit" %% "refined-scalaz" % "0.5.0", // optional + "eu.timepit" %% "refined-scodec" % "0.5.0", // optional + "eu.timepit" %% "refined-scalacheck" % "0.5.0" % "test" // optional ) For Scala.js just replace `%%` with `%%%` above. @@ -171,7 +171,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.4.0.markdown](https://github.com/fthomas/refined/blob/master/notes/0.4.0.markdown). +[0.5.0.markdown](https://github.com/fthomas/refined/blob/master/notes/0.5.0.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.5.0.markdown b/notes/0.5.0.markdown index 8bb1315b6..e53ecdd75 100644 --- a/notes/0.5.0.markdown +++ b/notes/0.5.0.markdown @@ -39,3 +39,5 @@ [#178]: https://github.com/fthomas/refined/pull/178 [#179]: https://github.com/fthomas/refined/pull/179 [#180]: https://github.com/fthomas/refined/pull/180 + +Released on 2016-06-17 diff --git a/version.sbt b/version.sbt index 404aa03e0..0d6d27c4b 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.5.0-SNAPSHOT" +version in ThisBuild := "0.5.0"