Skip to content

Commit 27f41a3

Browse files
committed
Setting version to 0.11.1
1 parent 6f6f5d5 commit 27f41a3

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![codecov.io](https://img.shields.io/codecov/c/github/fthomas/refined.svg)](http://codecov.io/github/fthomas/refined)
44
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/fthomas/refined?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
55
[![refined Scala version support](https://index.scala-lang.org/fthomas/refined/refined/latest-by-scala-version.svg?color=blue)](https://index.scala-lang.org/fthomas/refined/refined)
6-
[![Scaladoc](https://www.javadoc.io/badge/eu.timepit/refined_2.12.svg?color=blue&label=Scaladoc)](https://javadoc.io/doc/eu.timepit/refined_2.12/0.11.0)
6+
[![Scaladoc](https://www.javadoc.io/badge/eu.timepit/refined_2.12.svg?color=blue&label=Scaladoc)](https://javadoc.io/doc/eu.timepit/refined_2.12/0.11.1)
77

88
**refined** is a Scala library for refining types with type-level predicates
99
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
8989
b: Int Refined Greater[Int(4)] = 10
9090
```
9191

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)
9393
is a shortcut for [`shapeless.Witness`][singleton-types] which provides
9494
syntax for [literal-based singleton types][sip-23].
9595

@@ -187,31 +187,31 @@ ageEither2: Either[String,Age] = Right(55)
187187

188188
## Using refined
189189

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
191191
[Scala.js][scala.js] version 2.12 and 2.13.
192192

193193
If you're using sbt, add the following to your build:
194194

195195
```sbt
196196
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
207207
)
208208
```
209209

210210
For Scala.js just replace `%%` with `%%%` above.
211211

212212
Instructions for Maven and other build tools are available at [search.maven.org][search.maven].
213213

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).
215215

216216
## Community
217217

@@ -310,7 +310,7 @@ opening a pull request to list it here:
310310
## Documentation
311311

312312
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>
314314

315315
There are further (type-checked) examples in the [`docs`][docs]
316316
directory including ones for defining [custom predicates][custom-pred]

0 commit comments

Comments
 (0)