Skip to content

Commit 0dd613f

Browse files
committed
version 1.10.0 and change groupId
1 parent 112387f commit 0dd613f

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

README.md

+11-11
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.3-blue.svg?cacheSeconds=2592000" />
4+
<img alt="Version" src="https://img.shields.io/badge/version-1.10.0-blue.svg?cacheSeconds=2592000" />
55
<a href="https://github.com/jsoizo/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,37 +40,37 @@ Pure Kotlin CSV Reader/Writer.
4040
for Kotlin DSL
4141

4242
```kotlin
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
43+
implementation("com.jsoizo:kotlin-csv-jvm:1.10.0") // for JVM platform
44+
implementation("com.jsoizo:kotlin-csv-js:1.10.0") // for Kotlin JS platform
4545
```
4646

4747
for Gradle DSL
4848

4949
```groovy
50-
implementation 'com.github.doyaaaaaken:kotlin-csv-jvm:1.9.3' // for JVM platform
51-
implementation 'com.github.doyaaaaaken:kotlin-csv-js:1.9.3' // for Kotlin JS platform
50+
implementation 'com.jsoizo:kotlin-csv-jvm:1.10.0' // for JVM platform
51+
implementation 'com.jsoizo:kotlin-csv-js:1.10.0' // for Kotlin JS platform
5252
```
5353

5454
### Maven
5555

5656
```maven
5757
<dependency>
58-
<groupId>com.github.doyaaaaaken</groupId>
58+
<groupId>com.jsoizo</groupId>
5959
<artifactId>kotlin-csv-jvm</artifactId>
60-
<version>1.9.3</version>
60+
<version>1.10.0</version>
6161
</dependency>
6262
<dependency>
63-
<groupId>com.github.doyaaaaaken</groupId>
63+
<groupId>com.jsoizo</groupId>
6464
<artifactId>kotlin-csv-js</artifactId>
65-
<version>1.9.3</version>
65+
<version>1.10.0</version>
6666
</dependency>
6767
```
6868

6969
### [kscript](https://github.com/holgerbrandl/kscript)
7070

7171
```kotlin
72-
@file:DependsOn("com.github.doyaaaaaken:kotlin-csv-jvm:1.9.3") // for JVM platform
73-
@file:DependsOn("com.github.doyaaaaaken:kotlin-csv-js:1.9.3") // for Kotlin JS platform
72+
@file:DependsOn("com.jsoizo:kotlin-csv-jvm:1.10.0") // for JVM platform
73+
@file:DependsOn("com.jsoizo:kotlin-csv-js:1.10.0") // for Kotlin JS platform
7474
```
7575

7676
## Examples

build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ plugins {
77
jacoco
88
}
99

10-
group = "com.github.doyaaaaaken"
11-
version = "1.9.3"
10+
group = "com.jsoizo"
11+
version = "1.10.0"
1212

1313
buildscript {
1414
repositories {
@@ -90,7 +90,7 @@ publishing {
9090
url.set("https://github.com/jsoizo/kotlin-csv")
9191

9292
organization {
93-
name.set("com.github.doyaaaaaken")
93+
name.set("com.jsoizo")
9494
url.set("https://github.com/jsoizo")
9595
}
9696
licenses {

0 commit comments

Comments
 (0)