From 58fac68bc8b92a9cd6c39b53d8b810b62048b1cd Mon Sep 17 00:00:00 2001 From: Jun Sekine Date: Sun, 11 Aug 2024 23:06:30 +0900 Subject: [PATCH] version 1.10.0 and change groupId --- README.md | 22 +++++++++++----------- build.gradle.kts | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 002947e..a8b34e3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

kotlin-csv

- Version + Version License: Apache License 2.0 @@ -40,37 +40,37 @@ Pure Kotlin CSV Reader/Writer. 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 +implementation("com.jsoizo:kotlin-csv-jvm:1.10.0") // for JVM platform +implementation("com.jsoizo:kotlin-csv-js:1.10.0") // for Kotlin JS platform ``` for Gradle 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 +implementation 'com.jsoizo:kotlin-csv-jvm:1.10.0' // for JVM platform +implementation 'com.jsoizo:kotlin-csv-js:1.10.0' // for Kotlin JS platform ``` ### Maven ```maven - com.github.doyaaaaaken + com.jsoizo kotlin-csv-jvm - 1.9.3 + 1.10.0 - com.github.doyaaaaaken + com.jsoizo kotlin-csv-js - 1.9.3 + 1.10.0 ``` ### [kscript](https://github.com/holgerbrandl/kscript) ```kotlin -@file:DependsOn("com.github.doyaaaaaken:kotlin-csv-jvm:1.9.3") // for JVM platform -@file:DependsOn("com.github.doyaaaaaken:kotlin-csv-js:1.9.3") // for Kotlin JS platform +@file:DependsOn("com.jsoizo:kotlin-csv-jvm:1.10.0") // for JVM platform +@file:DependsOn("com.jsoizo:kotlin-csv-js:1.10.0") // for Kotlin JS platform ``` ## Examples diff --git a/build.gradle.kts b/build.gradle.kts index 10acd96..36a3124 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ plugins { } group = "com.github.doyaaaaaken" -version = "1.9.3" +version = "1.10.0" buildscript { repositories {