Skip to content

Commit 8062e9f

Browse files
authored
Update Readme to say Kotlin 2.1.0 to match the reality (#4513)
1 parent feea16d commit 8062e9f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
[![JetBrains official project](https://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
55
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
66
[![Download](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.10.2)](https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.10.2)
7-
[![Kotlin](https://img.shields.io/badge/kotlin-2.0.0-blue.svg?logo=kotlin)](http://kotlinlang.org)
7+
[![Kotlin](https://img.shields.io/badge/kotlin-2.1.0-blue.svg?logo=kotlin)](http://kotlinlang.org)
88
[![KDoc link](https://img.shields.io/badge/API_reference-KDoc-blue)](https://kotlinlang.org/api/kotlinx.coroutines/)
99
[![Slack channel](https://img.shields.io/badge/chat-slack-green.svg?logo=slack)](https://kotlinlang.slack.com/messages/coroutines/)
1010

1111
Library support for Kotlin coroutines with [multiplatform](#multiplatform) support.
12-
This is a companion version for the Kotlin `2.0.0` release.
12+
This is a companion version for the Kotlin `2.1.0` release.
1313

1414
```kotlin
1515
suspend fun main() = coroutineScope {
@@ -21,7 +21,7 @@ suspend fun main() = coroutineScope {
2121
}
2222
```
2323

24-
> Play with coroutines online [here](https://pl.kotl.in/9zva88r7S)
24+
> Play with coroutines online [here](https://pl.kotl.in/lPYtYEtD5)
2525
2626
## Modules
2727

@@ -94,7 +94,7 @@ And make sure that you use the latest Kotlin version:
9494

9595
```xml
9696
<properties>
97-
<kotlin.version>2.0.0</kotlin.version>
97+
<kotlin.version>2.1.0</kotlin.version>
9898
</properties>
9999
```
100100

@@ -113,10 +113,10 @@ And make sure that you use the latest Kotlin version:
113113
```kotlin
114114
plugins {
115115
// For build.gradle.kts (Kotlin DSL)
116-
kotlin("jvm") version "2.0.0"
116+
kotlin("jvm") version "2.1.0"
117117

118118
// For build.gradle (Groovy DSL)
119-
id "org.jetbrains.kotlin.jvm" version "2.0.0"
119+
id "org.jetbrains.kotlin.jvm" version "2.1.0"
120120
}
121121
```
122122

0 commit comments

Comments
 (0)