Skip to content

Commit 0060d25

Browse files
authored
Merge pull request #142 from jsoizo/fix_onwer_name_and_repo_url
Update usernames where they appear.
2 parents a6d3faa + 13e47ab commit 0060d25

File tree

3 files changed

+24
-21
lines changed

3 files changed

+24
-21
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# These are supported funding model platforms
22

3-
github: doyaaaaaken
3+
github: jsoizo

README.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22

33
<p>
44
<img alt="Version" src="https://img.shields.io/badge/version-1.9.3-blue.svg?cacheSeconds=2592000" />
5-
<a href="https://github.com/doyaaaaaken/kotlin-csv/blob/master/LICENSE">
5+
<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>
8-
<img alt="CircleCI" src="https://circleci.com/gh/doyaaaaaken/kotlin-csv/tree/master.svg?style=svg" />
9-
<a href="https://codecov.io/gh/doyaaaaaken/kotlin-csv">
10-
<img src="https://codecov.io/gh/doyaaaaaken/kotlin-csv/branch/master/graph/badge.svg" alt="codecov" />
8+
<a href="https://codecov.io/gh/jsoizo/kotlin-csv">
9+
<img src="https://codecov.io/gh/jsoizo/kotlin-csv/branch/master/graph/badge.svg" alt="codecov" />
1110
</a>
12-
<a href="https://www.codefactor.io/repository/github/doyaaaaaken/kotlin-csv">
13-
<img src="https://www.codefactor.io/repository/github/doyaaaaaken/kotlin-csv/badge" alt="CodeFactor" />
11+
<a href="https://www.codefactor.io/repository/github/jsoizo/kotlin-csv">
12+
<img src="https://www.codefactor.io/repository/github/jsoizo/kotlin-csv/badge" alt="CodeFactor" />
1413
</a>
1514
</p>
1615

@@ -38,12 +37,16 @@ Pure Kotlin CSV Reader/Writer.
3837

3938
### Gradle
4039

41-
```gradle
42-
// Gradle Kotlin DSL
40+
for Kotlin DSL
41+
42+
```kotlin
4343
implementation("com.github.doyaaaaaken:kotlin-csv-jvm:1.9.3") // for JVM platform
4444
implementation("com.github.doyaaaaaken:kotlin-csv-js:1.9.3") // for Kotlin JS platform
45+
```
46+
47+
for Gradle DSL
4548

46-
// Gradle Groovy DSL
49+
```groovy
4750
implementation 'com.github.doyaaaaaken:kotlin-csv-jvm:1.9.3' // for JVM platform
4851
implementation 'com.github.doyaaaaaken:kotlin-csv-js:1.9.3' // for Kotlin JS platform
4952
```
@@ -115,7 +118,7 @@ csvReader().open("test1.csv") {
115118
csvReader().open("test2.csv") {
116119
readAllWithHeaderAsSequence().forEach { row: Map<String, String> ->
117120
//Do something
118-
println(row) //{id=1, name=doyaaaaaken}
121+
println(row) //{id=1, name=jsoizo}
119122
}
120123
}
121124
```
@@ -276,7 +279,7 @@ val writer = csvWriter {
276279

277280
**Documents**
278281

279-
* [Change Logs](https://github.com/doyaaaaaken/kotlin-csv/releases)
282+
* [Change Logs](https://github.com/jsoizo/kotlin-csv/releases)
280283

281284
**Libraries which use kotlin-csv**
282285

@@ -286,13 +289,13 @@ val writer = csvWriter {
286289

287290
## 🤝 Contributing
288291

289-
Contributions, [issues](https://github.com/doyaaaaaken/kotlin-csv/issues) and feature requests are welcome!
292+
Contributions, [issues](https://github.com/jsoizo/kotlin-csv/issues) and feature requests are welcome!
290293
If you have questions, ask away in [Kotlin Slack's](https://kotlinlang.slack.com) `kotlin-csv` room.
291294

292295
## 💻 Development
293296

294297
```sh
295-
git clone [email protected]:doyaaaaaken/kotlin-csv.git
298+
git clone [email protected]:jsoizo/kotlin-csv.git
296299
cd kotlin-csv
297300
./gradlew check
298301
```

build.gradle.kts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,26 +87,26 @@ publishing {
8787
(this as MavenPublication).pom {
8888
name.set("kotlin-csv")
8989
description.set("Kotlin CSV Reader/Writer")
90-
url.set("https://github.com/doyaaaaaken/kotlin-csv")
90+
url.set("https://github.com/jsoizo/kotlin-csv")
9191

9292
organization {
9393
name.set("com.github.doyaaaaaken")
94-
url.set("https://github.com/doyaaaaaken")
94+
url.set("https://github.com/jsoizo")
9595
}
9696
licenses {
9797
license {
9898
name.set("Apache License 2.0")
99-
url.set("https://github.com/doyaaaaaken/kotlin-csv/blob/master/LICENSE")
99+
url.set("https://github.com/jsoizo/kotlin-csv/blob/master/LICENSE")
100100
}
101101
}
102102
scm {
103-
url.set("https://github.com/doyaaaaaken/kotlin-csv")
104-
connection.set("scm:git:git://github.com/doyaaaaaken/kotlin-csv.git")
105-
developerConnection.set("https://github.com/doyaaaaaken/kotlin-csv")
103+
url.set("https://github.com/jsoizo/kotlin-csv")
104+
connection.set("scm:git:git://github.com/jsoizo/kotlin-csv.git")
105+
developerConnection.set("https://github.com/jsoizo/kotlin-csv")
106106
}
107107
developers {
108108
developer {
109-
name.set("doyaaaaaken")
109+
name.set("jsoizo")
110110
}
111111
}
112112
}

0 commit comments

Comments
 (0)