|
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.2) |
| 6 | +[](https://javadoc.io/doc/eu.timepit/refined_2.12/0.11.3) |
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.2/eu/timepit/refined/index.html#W:shapeless.Witness.type) |
| 92 | +**Note** that [`W`](https://static.javadoc.io/eu.timepit/refined_2.12/0.11.3/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.2, which is available for Scala and |
| 190 | +The latest version of the library is 0.11.3, 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.2", |
198 |
| - "eu.timepit" %% "refined-cats" % "0.11.2", // optional |
199 |
| - "eu.timepit" %% "refined-eval" % "0.11.2", // optional, JVM-only |
200 |
| - "eu.timepit" %% "refined-jsonpath" % "0.11.2", // optional, JVM-only |
201 |
| - "eu.timepit" %% "refined-pureconfig" % "0.11.2", // optional, JVM-only |
202 |
| - "eu.timepit" %% "refined-scalacheck" % "0.11.2", // optional |
203 |
| - "eu.timepit" %% "refined-scalaz" % "0.11.2", // optional |
204 |
| - "eu.timepit" %% "refined-scodec" % "0.11.2", // optional |
205 |
| - "eu.timepit" %% "refined-scopt" % "0.11.2", // optional |
206 |
| - "eu.timepit" %% "refined-shapeless" % "0.11.2" // optional |
| 197 | + "eu.timepit" %% "refined" % "0.11.3", |
| 198 | + "eu.timepit" %% "refined-cats" % "0.11.3", // optional |
| 199 | + "eu.timepit" %% "refined-eval" % "0.11.3", // optional, JVM-only |
| 200 | + "eu.timepit" %% "refined-jsonpath" % "0.11.3", // optional, JVM-only |
| 201 | + "eu.timepit" %% "refined-pureconfig" % "0.11.3", // optional, JVM-only |
| 202 | + "eu.timepit" %% "refined-scalacheck" % "0.11.3", // optional |
| 203 | + "eu.timepit" %% "refined-scalaz" % "0.11.3", // optional |
| 204 | + "eu.timepit" %% "refined-scodec" % "0.11.3", // optional |
| 205 | + "eu.timepit" %% "refined-scopt" % "0.11.3", // optional |
| 206 | + "eu.timepit" %% "refined-shapeless" % "0.11.3" // 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.2). |
| 214 | +Release notes for the latest version are [here](https://github.com/fthomas/refined/releases/tag/v0.11.3). |
215 | 215 |
|
216 | 216 | ## Community
|
217 | 217 |
|
@@ -311,7 +311,7 @@ opening a pull request to list it here:
|
311 | 311 | ## Documentation
|
312 | 312 |
|
313 | 313 | API documentation of the latest release is available at:
|
314 |
| -<https://static.javadoc.io/eu.timepit/refined_2.12/0.11.2/eu/timepit/refined/index.html> |
| 314 | +<https://static.javadoc.io/eu.timepit/refined_2.12/0.11.3/eu/timepit/refined/index.html> |
315 | 315 |
|
316 | 316 | There are further (type-checked) examples in the [`docs`][docs]
|
317 | 317 | directory including ones for defining [custom predicates][custom-pred]
|
|
0 commit comments