Skip to content

Commit

Permalink
Setting version to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fthomas committed Dec 24, 2016
1 parent 632349c commit 8b35922
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,18 +157,18 @@ scala> val u1: String Refined Url = "htp://example.com"

## Using refined

The latest version of the library is 0.6.0, which is available for Scala and
The latest version of the library is 0.6.1, 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.6.0",
"eu.timepit" %% "refined-scalaz" % "0.6.0", // optional
"eu.timepit" %% "refined-scodec" % "0.6.0", // optional
"eu.timepit" %% "refined-scalacheck" % "0.6.0" % "test", // optional
"eu.timepit" %% "refined-pureconfig" % "0.6.0" // optional
"eu.timepit" %% "refined" % "0.6.1",
"eu.timepit" %% "refined-scalaz" % "0.6.1", // optional
"eu.timepit" %% "refined-scodec" % "0.6.1", // optional
"eu.timepit" %% "refined-scalacheck" % "0.6.1" % "test", // optional
"eu.timepit" %% "refined-pureconfig" % "0.6.1" // optional
)
```

Expand All @@ -177,7 +177,7 @@ For Scala.js just replace `%%` with `%%%` above (except for `refined-pureconfig`
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.6.0.markdown](https://github.com/fthomas/refined/blob/master/notes/0.6.0.markdown).
[0.6.1.markdown](https://github.com/fthomas/refined/blob/master/notes/0.6.1.markdown).

The optional dependencies are add-on libraries that provide support for
other tag types or integration of refined types in other libraries:
Expand Down
2 changes: 2 additions & 0 deletions notes/0.6.1.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@
[#226]: https://github.com/fthomas/refined/pull/226
[#232]: https://github.com/fthomas/refined/pull/232
[#233]: https://github.com/fthomas/refined/pull/233

Released on 2016-12-24
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.6.1-SNAPSHOT"
version in ThisBuild := "0.6.1"

0 comments on commit 8b35922

Please sign in to comment.