From 0a48129c4d65db7929c77e77c9934ceb0aec421a Mon Sep 17 00:00:00 2001 From: "Frank S. Thomas" Date: Wed, 27 Dec 2017 10:54:30 +0100 Subject: [PATCH] Setting version to 0.8.6 --- README.md | 26 +++++++++++++------------- notes/0.8.6.markdown | 2 ++ version.sbt | 2 +- 3 files changed, 16 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index b92ef26e3..55383dc40 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![codecov.io](https://img.shields.io/codecov/c/github/fthomas/refined.svg)](http://codecov.io/github/fthomas/refined) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/fthomas/refined?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Scaladex](https://index.scala-lang.org/fthomas/refined/refined/latest.svg?color=blue)](https://index.scala-lang.org/fthomas/refined/refined) -[![Scaladoc](https://www.javadoc.io/badge/eu.timepit/refined_2.12.svg?color=blue&label=Scaladoc)](https://static.javadoc.io/eu.timepit/refined_2.12/0.8.5/eu/timepit/refined/index.html) +[![Scaladoc](https://www.javadoc.io/badge/eu.timepit/refined_2.12.svg?color=blue&label=Scaladoc)](https://static.javadoc.io/eu.timepit/refined_2.12/0.8.6/eu/timepit/refined/index.html) **refined** is a Scala library for refining types with type-level predicates which constrain the set of values described by the refined type. It started @@ -76,7 +76,7 @@ This mechanism allows to pass values of more specific types (e.g. ``Int Refined Greater[W.`10`.T]``) to functions that take a more general type (e.g. `Int Refined Positive`) without manual intervention. -Note that [`W`](https://static.javadoc.io/eu.timepit/refined_2.12/0.8.5/eu/timepit/refined/index.html#W:shapeless.Witness.type) +Note that [`W`](https://static.javadoc.io/eu.timepit/refined_2.12/0.8.6/eu/timepit/refined/index.html#W:shapeless.Witness.type) is a shortcut for [`shapeless.Witness`][singleton-types] which provides syntax for [literal-based singleton types][sip-23]. @@ -172,21 +172,21 @@ ageEither2: Either[String,Age] = Right(55) ## Using refined -The latest version of the library is 0.8.5, which is available for Scala and +The latest version of the library is 0.8.6, 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.5", - "eu.timepit" %% "refined-cats" % "0.8.5", // optional - "eu.timepit" %% "refined-eval" % "0.8.5", // optional, JVM-only - "eu.timepit" %% "refined-jsonpath" % "0.8.5", // optional, JVM-only - "eu.timepit" %% "refined-pureconfig" % "0.8.5", // optional, JVM-only - "eu.timepit" %% "refined-scalacheck" % "0.8.5", // optional - "eu.timepit" %% "refined-scalaz" % "0.8.5", // optional - "eu.timepit" %% "refined-scodec" % "0.8.5" // optional + "eu.timepit" %% "refined" % "0.8.6", + "eu.timepit" %% "refined-cats" % "0.8.6", // optional + "eu.timepit" %% "refined-eval" % "0.8.6", // optional, JVM-only + "eu.timepit" %% "refined-jsonpath" % "0.8.6", // optional, JVM-only + "eu.timepit" %% "refined-pureconfig" % "0.8.6", // optional, JVM-only + "eu.timepit" %% "refined-scalacheck" % "0.8.6", // optional + "eu.timepit" %% "refined-scalaz" % "0.8.6", // optional + "eu.timepit" %% "refined-scodec" % "0.8.6" // optional ) ``` @@ -195,7 +195,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.5.markdown](https://github.com/fthomas/refined/blob/master/notes/0.8.5.markdown). +[0.8.6.markdown](https://github.com/fthomas/refined/blob/master/notes/0.8.6.markdown). ## Community @@ -269,7 +269,7 @@ opening a pull request to list it here: ## Documentation API documentation of the latest release is available at: - + There are further (type-checked) examples in the [`docs`][docs] directory including ones for defining [custom predicates][custom-pred] diff --git a/notes/0.8.6.markdown b/notes/0.8.6.markdown index d5a4464f0..48fda1aef 100644 --- a/notes/0.8.6.markdown +++ b/notes/0.8.6.markdown @@ -47,3 +47,5 @@ Thanks to [kusamakura](https://github.com/kusamakura)! ([#379][#379]) [#385]: https://github.com/fthomas/refined/pull/385 [#388]: https://github.com/fthomas/refined/pull/388 [#390]: https://github.com/fthomas/refined/pull/390 + +Released on 2017-12-27 diff --git a/version.sbt b/version.sbt index 2561a50df..fcf6c5ca0 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.8.6-SNAPSHOT" +version in ThisBuild := "0.8.6"