1
1
<h1 align =" center " >kotlin-csv</h1 >
2
2
3
3
<p >
4
- <img alt =" Version " src =" https://img.shields.io/badge/version-1.9.2 -blue.svg?cacheSeconds=2592000 " />
4
+ <img alt =" Version " src =" https://img.shields.io/badge/version-1.9.3 -blue.svg?cacheSeconds=2592000 " />
5
5
<a href =" https://github.com/doyaaaaaken/kotlin-csv/blob/master/LICENSE " >
6
6
<img alt="License: Apache License 2.0" src="https://img.shields.io/badge/License-Apache License 2.0-yellow.svg" target="_blank" />
7
7
</a >
@@ -40,12 +40,12 @@ Pure Kotlin CSV Reader/Writer.
40
40
41
41
``` gradle
42
42
// Gradle Kotlin DSL
43
- implementation("com.github.doyaaaaaken:kotlin-csv-jvm:1.9.2 ") // for JVM platform
44
- implementation("com.github.doyaaaaaken:kotlin-csv-js:1.9.2 ") // for Kotlin JS platform
43
+ implementation("com.github.doyaaaaaken:kotlin-csv-jvm:1.9.3 ") // for JVM platform
44
+ implementation("com.github.doyaaaaaken:kotlin-csv-js:1.9.3 ") // for Kotlin JS platform
45
45
46
46
// Gradle Groovy DSL
47
- implementation 'com.github.doyaaaaaken:kotlin-csv-jvm:1.9.2 ' // for JVM platform
48
- implementation 'com.github.doyaaaaaken:kotlin-csv-js:1.9.2 ' // for Kotlin JS platform
47
+ implementation 'com.github.doyaaaaaken:kotlin-csv-jvm:1.9.3 ' // for JVM platform
48
+ implementation 'com.github.doyaaaaaken:kotlin-csv-js:1.9.3 ' // for Kotlin JS platform
49
49
```
50
50
51
51
### Maven
@@ -54,20 +54,20 @@ implementation 'com.github.doyaaaaaken:kotlin-csv-js:1.9.2' // for Kotlin JS pla
54
54
<dependency>
55
55
<groupId>com.github.doyaaaaaken</groupId>
56
56
<artifactId>kotlin-csv-jvm</artifactId>
57
- <version>1.9.2 </version>
57
+ <version>1.9.3 </version>
58
58
</dependency>
59
59
<dependency>
60
60
<groupId>com.github.doyaaaaaken</groupId>
61
61
<artifactId>kotlin-csv-js</artifactId>
62
- <version>1.9.2 </version>
62
+ <version>1.9.3 </version>
63
63
</dependency>
64
64
```
65
65
66
66
### [ kscript] ( https://github.com/holgerbrandl/kscript )
67
67
68
68
``` kotlin
69
- @file:DependsOn(" com.github.doyaaaaaken:kotlin-csv-jvm:1.9.2 " ) // for JVM platform
70
- @file:DependsOn(" com.github.doyaaaaaken:kotlin-csv-js:1.9.2 " ) // for Kotlin JS platform
69
+ @file:DependsOn(" com.github.doyaaaaaken:kotlin-csv-jvm:1.9.3 " ) // for JVM platform
70
+ @file:DependsOn(" com.github.doyaaaaaken:kotlin-csv-js:1.9.3 " ) // for Kotlin JS platform
71
71
```
72
72
73
73
## Examples
0 commit comments