Skip to content

Commit 12d008b

Browse files
committed
bump up version
1 parent 1ab3b68 commit 12d008b

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<h1 align="center">kotlin-csv</h1>
22

33
<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" />
55
<a href="https://github.com/doyaaaaaken/kotlin-csv/blob/master/LICENSE">
66
<img alt="License: Apache License 2.0" src="https://img.shields.io/badge/License-Apache License 2.0-yellow.svg" target="_blank" />
77
</a>
@@ -40,12 +40,12 @@ Pure Kotlin CSV Reader/Writer.
4040

4141
```gradle
4242
// 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
4545
4646
// 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
4949
```
5050

5151
### Maven
@@ -54,20 +54,20 @@ implementation 'com.github.doyaaaaaken:kotlin-csv-js:1.9.2' // for Kotlin JS pla
5454
<dependency>
5555
<groupId>com.github.doyaaaaaken</groupId>
5656
<artifactId>kotlin-csv-jvm</artifactId>
57-
<version>1.9.2</version>
57+
<version>1.9.3</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>com.github.doyaaaaaken</groupId>
6161
<artifactId>kotlin-csv-js</artifactId>
62-
<version>1.9.2</version>
62+
<version>1.9.3</version>
6363
</dependency>
6464
```
6565

6666
### [kscript](https://github.com/holgerbrandl/kscript)
6767

6868
```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
7171
```
7272

7373
## Examples

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = "com.github.doyaaaaaken"
11-
version = "1.9.2"
11+
version = "1.9.3"
1212

1313
buildscript {
1414
repositories {

0 commit comments

Comments
 (0)