Skip to content

Commit

Permalink
bump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
doyaaaaaken committed Jul 30, 2023
1 parent 96f3b7d commit c9d8800
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h1 align="center">kotlin-csv</h1>

<p>
<img alt="Version" src="https://img.shields.io/badge/version-1.9.1-blue.svg?cacheSeconds=2592000" />
<img alt="Version" src="https://img.shields.io/badge/version-1.9.2-blue.svg?cacheSeconds=2592000" />
<a href="https://github.com/doyaaaaaken/kotlin-csv/blob/master/LICENSE">
<img alt="License: Apache License 2.0" src="https://img.shields.io/badge/License-Apache License 2.0-yellow.svg" target="_blank" />
</a>
Expand Down Expand Up @@ -40,12 +40,12 @@ Pure Kotlin CSV Reader/Writer.

```gradle
// Gradle Kotlin DSL
implementation("com.github.doyaaaaaken:kotlin-csv-jvm:1.9.1") // for JVM platform
implementation("com.github.doyaaaaaken:kotlin-csv-js:1.9.1") // for Kotlin JS platform
implementation("com.github.doyaaaaaken:kotlin-csv-jvm:1.9.2") // for JVM platform
implementation("com.github.doyaaaaaken:kotlin-csv-js:1.9.2") // for Kotlin JS platform
// Gradle Groovy DSL
implementation 'com.github.doyaaaaaken:kotlin-csv-jvm:1.9.1' // for JVM platform
implementation 'com.github.doyaaaaaken:kotlin-csv-js:1.9.1' // for Kotlin JS platform
implementation 'com.github.doyaaaaaken:kotlin-csv-jvm:1.9.2' // for JVM platform
implementation 'com.github.doyaaaaaken:kotlin-csv-js:1.9.2' // for Kotlin JS platform
```

### Maven
Expand All @@ -54,20 +54,20 @@ implementation 'com.github.doyaaaaaken:kotlin-csv-js:1.9.1' // for Kotlin JS pla
<dependency>
<groupId>com.github.doyaaaaaken</groupId>
<artifactId>kotlin-csv-jvm</artifactId>
<version>1.9.1</version>
<version>1.9.2</version>
</dependency>
<dependency>
<groupId>com.github.doyaaaaaken</groupId>
<artifactId>kotlin-csv-js</artifactId>
<version>1.9.1</version>
<version>1.9.2</version>
</dependency>
```

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

```kotlin
@file:DependsOn("com.github.doyaaaaaken:kotlin-csv-jvm:1.9.1") // for JVM platform
@file:DependsOn("com.github.doyaaaaaken:kotlin-csv-js:1.9.1") // for Kotlin JS platform
@file:DependsOn("com.github.doyaaaaaken:kotlin-csv-jvm:1.9.2") // for JVM platform
@file:DependsOn("com.github.doyaaaaaken:kotlin-csv-js:1.9.2") // for Kotlin JS platform
```

## Examples
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "com.github.doyaaaaaken"
version = "1.9.1"
version = "1.9.2"

buildscript {
repositories {
Expand Down

0 comments on commit c9d8800

Please sign in to comment.