Skip to content

Commit 865e13d

Browse files
committed
Set version to 0.3.0
1 parent 16006fa commit 865e13d

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
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.2.1"
13+
libraryDependencies += "com.nrinaudo" %% "kantan.csv-cats" % "0.3.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.2.1"
19+
libraryDependencies += "com.nrinaudo" %% "kantan.csv-jackson" % "0.3.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.2.1"
38+
libraryDependencies += "com.nrinaudo" %% "kantan.csv-commons" % "0.3.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.2.1"
12+
libraryDependencies += "com.nrinaudo" %% "kantan.csv-java8" % "0.3.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.2.1"
14+
libraryDependencies += "com.nrinaudo" %% "kantan.csv-joda-time" % "0.3.0"
1515
```
1616

1717
You then need to import the corresponding package:

docs/src/main/tut/refined.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ kantan.csv comes with a [refined](https://github.com/fthomas/refined) module tha
88
by adding the following dependency to your `build.sbt`:
99

1010
```scala
11-
libraryDependencies += "com.nrinaudo" %% "kantan.csv-refined" % "0.2.1"
11+
libraryDependencies += "com.nrinaudo" %% "kantan.csv-refined" % "0.3.0"
1212
```
1313

1414
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.2.1"
13+
libraryDependencies += "com.nrinaudo" %% "kantan.csv-scalaz" % "0.3.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.2.1"
15+
libraryDependencies += "com.nrinaudo" %% "kantan.csv-generic" % "0.3.0"
1616
```
1717

1818
Let's first declare the imports we'll need in the rest of this tutorial:

project/Versions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
object Versions {
22
val commonsCsv = "1.5"
33
val jacksonCsv = "2.9.2"
4-
val kantanCodecs = "0.2.2-SNAPSHOT"
4+
val kantanCodecs = "0.2.2"
55
val opencsv = "4.0"
66
val productCollection = "1.4.5"
77
val scalaCsv = "1.3.5"

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.2.1"
1+
version in ThisBuild := "0.3.0"

0 commit comments

Comments
 (0)