Skip to content

Commit

Permalink
Setting version to 0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fthomas committed Oct 4, 2017
1 parent 39e25b8 commit bdb0ab8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3/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.4/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
Expand Down Expand Up @@ -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.3/eu/timepit/refined/index.html#W:shapeless.Witness.type)
Note that [`W`](https://static.javadoc.io/eu.timepit/refined_2.12/0.8.4/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].

Expand Down Expand Up @@ -170,18 +170,18 @@ println(ageEither2)

## Using refined

The latest version of the library is 0.8.3, which is available for Scala and
The latest version of the library is 0.8.4, 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.3",
"eu.timepit" %% "refined-pureconfig" % "0.8.3", // optional, JVM-only
"eu.timepit" %% "refined-scalacheck" % "0.8.3", // optional
"eu.timepit" %% "refined-scalaz" % "0.8.3", // optional
"eu.timepit" %% "refined-scodec" % "0.8.3" // optional
"eu.timepit" %% "refined" % "0.8.4",
"eu.timepit" %% "refined-pureconfig" % "0.8.4", // optional, JVM-only
"eu.timepit" %% "refined-scalacheck" % "0.8.4", // optional
"eu.timepit" %% "refined-scalaz" % "0.8.4", // optional
"eu.timepit" %% "refined-scodec" % "0.8.4" // optional
)
```

Expand All @@ -190,7 +190,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.3.markdown](https://github.com/fthomas/refined/blob/master/notes/0.8.3.markdown).
[0.8.4.markdown](https://github.com/fthomas/refined/blob/master/notes/0.8.4.markdown).

The optional dependencies are add-on libraries that provide support for
other tag types or integration of refined types in other libraries:
Expand All @@ -208,7 +208,7 @@ for libraries that directly provide support for **refined**.
## Documentation

API documentation of the latest release is available at:
<https://static.javadoc.io/eu.timepit/refined_2.12/0.8.3/eu/timepit/refined/index.html>
<https://static.javadoc.io/eu.timepit/refined_2.12/0.8.4/eu/timepit/refined/index.html>

There are further (type-checked) examples in the [`docs`][docs]
directory including ones for defining [custom predicates][custom-pred]
Expand Down
2 changes: 2 additions & 0 deletions notes/0.8.4.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@
[#334]: https://github.com/fthomas/refined/pull/334
[#335]: https://github.com/fthomas/refined/pull/335
[#336]: https://github.com/fthomas/refined/pull/336

Released on 2017-10-04
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.8.4-SNAPSHOT"
version in ThisBuild := "0.8.4"

0 comments on commit bdb0ab8

Please sign in to comment.