Skip to content
This repository has been archived by the owner on Jun 15, 2020. It is now read-only.

Commit

Permalink
v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jto committed Aug 4, 2016
1 parent c7f223c commit 1a3e506
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Add the following dependencies your `build.sbt` as needed:
```scala
resolvers += Resolver.sonatypeRepo("releases")

val validationVersion = "2.0"
val validationVersion = "2.0.1"

libraryDependencies ++= Seq(
"io.github.jto" %% "validation-core" % validationVersion,
Expand All @@ -72,7 +72,7 @@ libraryDependencies ++= Seq(

| Validation | Play |
| ---------- | ----- |
| 2.0 | 2.5.3 |
| 2.0.x | 2.5.3 |
| 1.1.x | 2.4.x |
| 1.0.2 | 2.3.x |

Expand Down
4 changes: 4 additions & 0 deletions docs/src/main/tut/ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release notes

### 2.0.1:

- Add Read / Write utilities [1](https://github.com/jto/validation/commit/c7f223ce65a8b55c6a2a4839364f5559fdeed7a2)

### 2.0:

- Replace `play/functional` with `typelevel/cats` ([#38](https://github.com/jto/validation/pull/38) [1](https://github.com/jto/validation/commit/49110067caea0a483f840ad2334ad05ae379f1cf), [2](https://github.com/jto/validation/commit/a9108a00cbef8b6de668bfb7c7bee44c1b974537), [3](https://github.com/jto/validation/commit/5ccc7895672412da189f4e9efbea97ce7be467be), [4](https://github.com/jto/validation/commit/0ebcd973e24a33f87d280fc8565419d8ad8b9829), [5](https://github.com/jto/validation/commit/6505afe98972f8cf3b356f334db2a9a39b806961), [6](https://github.com/jto/validation/commit/b5aacbe711e59a7fe35d55ec1a63d0b633646ddc), [7](https://github.com/jto/validation/commit/cbe0d5b0310038840af3e1f6fa5668963ae32773), [8](https://github.com/jto/validation/commit/09aca48b858afb20845c21bf7e25faf2ad611cc7), [9](https://github.com/jto/validation/commit/86f63d0cc547d41c6dce36e2877d5b0de8a8cbac))
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/tut/ScalaJsValidation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
def cat(path: String): Unit =
println(scala.io.Source.fromFile(s"play-scalajs-example/$path").mkString.trim)
```
Validation 2.0 supports Scala.js, which allows compiling validation logic for JavaScript to run it directly in the browser. Let's begin by playing with it. Try to change the `tryMe` variable in the following editor. The result is automatically outputted.
Validation 2.0.x supports Scala.js, which allows compiling validation logic for JavaScript to run it directly in the browser. Let's begin by playing with it. Try to change the `tryMe` variable in the following editor. The result is automatically outputted.

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.15.2/codemirror.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.15.2/codemirror.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "2.0"
version in ThisBuild := "2.0.1"

0 comments on commit 1a3e506

Please sign in to comment.