|
3 | 3 | [](http://codecov.io/github/fthomas/refined) |
4 | 4 | [](https://gitter.im/fthomas/refined?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) |
5 | 5 | [](https://index.scala-lang.org/fthomas/refined/refined) |
6 | | -[](https://javadoc.io/doc/eu.timepit/refined_2.12/0.11.0) |
| 6 | +[](https://javadoc.io/doc/eu.timepit/refined_2.12/0.11.1) |
7 | 7 |
|
8 | 8 | **refined** is a Scala library for refining types with type-level predicates |
9 | 9 | which constrain the set of values described by the refined type. |
@@ -89,7 +89,7 @@ scala> val b: Int Refined Greater[W.`4`.T] = a |
89 | 89 | b: Int Refined Greater[Int(4)] = 10 |
90 | 90 | ``` |
91 | 91 |
|
92 | | -**Note** that [`W`](https://static.javadoc.io/eu.timepit/refined_2.12/0.11.0/eu/timepit/refined/index.html#W:shapeless.Witness.type) |
| 92 | +**Note** that [`W`](https://static.javadoc.io/eu.timepit/refined_2.12/0.11.1/eu/timepit/refined/index.html#W:shapeless.Witness.type) |
93 | 93 | is a shortcut for [`shapeless.Witness`][singleton-types] which provides |
94 | 94 | syntax for [literal-based singleton types][sip-23]. |
95 | 95 |
|
@@ -187,31 +187,31 @@ ageEither2: Either[String,Age] = Right(55) |
187 | 187 |
|
188 | 188 | ## Using refined |
189 | 189 |
|
190 | | -The latest version of the library is 0.11.0, which is available for Scala and |
| 190 | +The latest version of the library is 0.11.1, which is available for Scala and |
191 | 191 | [Scala.js][scala.js] version 2.12 and 2.13. |
192 | 192 |
|
193 | 193 | If you're using sbt, add the following to your build: |
194 | 194 |
|
195 | 195 | ```sbt |
196 | 196 | libraryDependencies ++= Seq( |
197 | | - "eu.timepit" %% "refined" % "0.11.0", |
198 | | - "eu.timepit" %% "refined-cats" % "0.11.0", // optional |
199 | | - "eu.timepit" %% "refined-eval" % "0.11.0", // optional, JVM-only |
200 | | - "eu.timepit" %% "refined-jsonpath" % "0.11.0", // optional, JVM-only |
201 | | - "eu.timepit" %% "refined-pureconfig" % "0.11.0", // optional, JVM-only |
202 | | - "eu.timepit" %% "refined-scalacheck" % "0.11.0", // optional |
203 | | - "eu.timepit" %% "refined-scalaz" % "0.11.0", // optional |
204 | | - "eu.timepit" %% "refined-scodec" % "0.11.0", // optional |
205 | | - "eu.timepit" %% "refined-scopt" % "0.11.0", // optional |
206 | | - "eu.timepit" %% "refined-shapeless" % "0.11.0" // optional |
| 197 | + "eu.timepit" %% "refined" % "0.11.1", |
| 198 | + "eu.timepit" %% "refined-cats" % "0.11.1", // optional |
| 199 | + "eu.timepit" %% "refined-eval" % "0.11.1", // optional, JVM-only |
| 200 | + "eu.timepit" %% "refined-jsonpath" % "0.11.1", // optional, JVM-only |
| 201 | + "eu.timepit" %% "refined-pureconfig" % "0.11.1", // optional, JVM-only |
| 202 | + "eu.timepit" %% "refined-scalacheck" % "0.11.1", // optional |
| 203 | + "eu.timepit" %% "refined-scalaz" % "0.11.1", // optional |
| 204 | + "eu.timepit" %% "refined-scodec" % "0.11.1", // optional |
| 205 | + "eu.timepit" %% "refined-scopt" % "0.11.1", // optional |
| 206 | + "eu.timepit" %% "refined-shapeless" % "0.11.1" // optional |
207 | 207 | ) |
208 | 208 | ``` |
209 | 209 |
|
210 | 210 | For Scala.js just replace `%%` with `%%%` above. |
211 | 211 |
|
212 | 212 | Instructions for Maven and other build tools are available at [search.maven.org][search.maven]. |
213 | 213 |
|
214 | | -Release notes for the latest version are [here](https://github.com/fthomas/refined/releases/tag/v0.11.0). |
| 214 | +Release notes for the latest version are [here](https://github.com/fthomas/refined/releases/tag/v0.11.1). |
215 | 215 |
|
216 | 216 | ## Community |
217 | 217 |
|
@@ -310,7 +310,7 @@ opening a pull request to list it here: |
310 | 310 | ## Documentation |
311 | 311 |
|
312 | 312 | API documentation of the latest release is available at: |
313 | | -<https://static.javadoc.io/eu.timepit/refined_2.12/0.11.0/eu/timepit/refined/index.html> |
| 313 | +<https://static.javadoc.io/eu.timepit/refined_2.12/0.11.1/eu/timepit/refined/index.html> |
314 | 314 |
|
315 | 315 | There are further (type-checked) examples in the [`docs`][docs] |
316 | 316 | directory including ones for defining [custom predicates][custom-pred] |
|
0 commit comments