From 13e47ab2b8992a8a1cbf280a554ac6eac348a84b Mon Sep 17 00:00:00 2001 From: Jun Sekine Date: Sat, 10 Aug 2024 22:10:27 +0900 Subject: [PATCH] chore: update funding.yml with new GitHub username jsoizo chore: update README.md with new GitHub username jsoizo for links and badges chore: update build.gradle.kts with new GitHub username jsoizo for project URLs and developer name --- .github/FUNDING.yml | 2 +- README.md | 29 ++++++++++++++++------------- build.gradle.kts | 14 +++++++------- 3 files changed, 24 insertions(+), 21 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 9a3f34c..91f9c9a 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,3 +1,3 @@ # These are supported funding model platforms -github: doyaaaaaken +github: jsoizo diff --git a/README.md b/README.md index c003f07..002947e 100644 --- a/README.md +++ b/README.md @@ -2,15 +2,14 @@

Version - + License: Apache License 2.0 - CircleCI - - codecov + + codecov - - CodeFactor + + CodeFactor

@@ -38,12 +37,16 @@ Pure Kotlin CSV Reader/Writer. ### Gradle -```gradle -// Gradle Kotlin DSL +for Kotlin DSL + +```kotlin implementation("com.github.doyaaaaaken:kotlin-csv-jvm:1.9.3") // for JVM platform implementation("com.github.doyaaaaaken:kotlin-csv-js:1.9.3") // for Kotlin JS platform +``` + +for Gradle DSL -// Gradle Groovy DSL +```groovy implementation 'com.github.doyaaaaaken:kotlin-csv-jvm:1.9.3' // for JVM platform implementation 'com.github.doyaaaaaken:kotlin-csv-js:1.9.3' // for Kotlin JS platform ``` @@ -115,7 +118,7 @@ csvReader().open("test1.csv") { csvReader().open("test2.csv") { readAllWithHeaderAsSequence().forEach { row: Map -> //Do something - println(row) //{id=1, name=doyaaaaaken} + println(row) //{id=1, name=jsoizo} } } ``` @@ -276,7 +279,7 @@ val writer = csvWriter { **Documents** -* [Change Logs](https://github.com/doyaaaaaken/kotlin-csv/releases) +* [Change Logs](https://github.com/jsoizo/kotlin-csv/releases) **Libraries which use kotlin-csv** @@ -286,13 +289,13 @@ val writer = csvWriter { ## 🤝 Contributing -Contributions, [issues](https://github.com/doyaaaaaken/kotlin-csv/issues) and feature requests are welcome! +Contributions, [issues](https://github.com/jsoizo/kotlin-csv/issues) and feature requests are welcome! If you have questions, ask away in [Kotlin Slack's](https://kotlinlang.slack.com) `kotlin-csv` room. ## 💻 Development ```sh -git clone git@github.com:doyaaaaaken/kotlin-csv.git +git clone git@github.com:jsoizo/kotlin-csv.git cd kotlin-csv ./gradlew check ``` diff --git a/build.gradle.kts b/build.gradle.kts index 3d77e7a..a8c8a8d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -87,26 +87,26 @@ publishing { (this as MavenPublication).pom { name.set("kotlin-csv") description.set("Kotlin CSV Reader/Writer") - url.set("https://github.com/doyaaaaaken/kotlin-csv") + url.set("https://github.com/jsoizo/kotlin-csv") organization { name.set("com.github.doyaaaaaken") - url.set("https://github.com/doyaaaaaken") + url.set("https://github.com/jsoizo") } licenses { license { name.set("Apache License 2.0") - url.set("https://github.com/doyaaaaaken/kotlin-csv/blob/master/LICENSE") + url.set("https://github.com/jsoizo/kotlin-csv/blob/master/LICENSE") } } scm { - url.set("https://github.com/doyaaaaaken/kotlin-csv") - connection.set("scm:git:git://github.com/doyaaaaaken/kotlin-csv.git") - developerConnection.set("https://github.com/doyaaaaaken/kotlin-csv") + url.set("https://github.com/jsoizo/kotlin-csv") + connection.set("scm:git:git://github.com/jsoizo/kotlin-csv.git") + developerConnection.set("https://github.com/jsoizo/kotlin-csv") } developers { developer { - name.set("doyaaaaaken") + name.set("jsoizo") } } }