Skip to content

Commit

Permalink
Setting version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fthomas committed Jun 17, 2016
1 parent c4335f4 commit abdf119
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,24 +154,24 @@ 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.

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:
Expand Down
2 changes: 2 additions & 0 deletions notes/0.5.0.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.5.0-SNAPSHOT"
version in ThisBuild := "0.5.0"

0 comments on commit abdf119

Please sign in to comment.