Skip to content

Commit 85b4c92

Browse files
committed
Update version in documentation.
1 parent 9de57a0 commit 85b4c92

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

docs/src/main/tut/cats.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ bones: it simply provides a few useful type class instances.
1010
The `cats` module can be used by adding the following dependency to your `build.sbt`:
1111

1212
```scala
13-
libraryDependencies += "com.nrinaudo" %% "kantan.csv-cats" % "0.1.19"
13+
libraryDependencies += "com.nrinaudo" %% "kantan.csv-cats" % "0.2.0"
1414
```
1515

1616
You then need to import the corresponding package:

docs/src/main/tut/engines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ hood.
1616
The [jackson csv] parser and serialiser can be used by adding the following dependency to your `build.sbt`:
1717

1818
```scala
19-
libraryDependencies += "com.nrinaudo" %% "kantan.csv-jackson" % "0.1.19"
19+
libraryDependencies += "com.nrinaudo" %% "kantan.csv-jackson" % "0.2.0"
2020
```
2121

2222
You then need to bring the right implicits in scope through:
@@ -35,7 +35,7 @@ and [`writerEngineFrom`]({{ site.baseurl }}/api/kantan/csv/engine/jackson$.html#
3535
The [commons csv] parser and serialiser can be used by adding the following dependency to your `build.sbt`:
3636

3737
```scala
38-
libraryDependencies += "com.nrinaudo" %% "kantan.csv-commons" % "0.1.19"
38+
libraryDependencies += "com.nrinaudo" %% "kantan.csv-commons" % "0.2.0"
3939
```
4040

4141
You then need to bring the right implicits in scope through:

docs/src/main/tut/java8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ kantan.csv API - we still support Java 7. There is, however, a dedicated optiona
99
adding the following line to your `build.sbt` file:
1010

1111
```scala
12-
libraryDependencies += "com.nrinaudo" %% "kantan.csv-java8" % "0.1.19"
12+
libraryDependencies += "com.nrinaudo" %% "kantan.csv-java8" % "0.2.0"
1313
```
1414

1515
You then need to import the corresponding package:

docs/src/main/tut/joda_time.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ support for it through a dedicated module.
1111
The `joda-time` module can be used by adding the following dependency to your `build.sbt`:
1212

1313
```scala
14-
libraryDependencies += "com.nrinaudo" %% "kantan.csv-joda-time" % "0.1.19"
14+
libraryDependencies += "com.nrinaudo" %% "kantan.csv-joda-time" % "0.2.0"
1515
```
1616

1717
You then need to import the corresponding package:

docs/src/main/tut/scalaz.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ bones: it provides decoders for [`Maybe`] and [`\/`] as well as a few useful typ
1010
The `scalaz` module can be used by adding the following dependency to your `build.sbt`:
1111

1212
```scala
13-
libraryDependencies += "com.nrinaudo" %% "kantan.csv-scalaz" % "0.1.19"
13+
libraryDependencies += "com.nrinaudo" %% "kantan.csv-scalaz" % "0.2.0"
1414
```
1515

1616
You then need to import the corresponding package:

docs/src/main/tut/shapeless.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ for more common types and patterns.
1212
The `generic` module can be used by adding the following dependency to your `build.sbt`:
1313

1414
```scala
15-
libraryDependencies += "com.nrinaudo" %% "kantan.csv-generic" % "0.1.19"
15+
libraryDependencies += "com.nrinaudo" %% "kantan.csv-generic" % "0.2.0"
1616
```
1717

1818
If you're using Scala 2.10.x, you should also add the macro paradise plugin to your build:

0 commit comments

Comments
 (0)