aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorVsevolod Tolstopyatov <qwwdfsad@gmail.com>2023-07-26 17:31:22 +0200
committerGitHub <noreply@github.com>2023-07-26 17:31:22 +0200
commitbc35cd8f80af1c7961291c15ac988d53a711e4ba (patch)
tree7a2aa02ddfc92ce8360f0c9cd19d57acb0942864 /README.md
parent47f0a46d4b8090b4e19688828b225eb85b5237dd (diff)
downloadkotlinx.coroutines-bc35cd8f80af1c7961291c15ac988d53a711e4ba.tar.gz
Update Kotlin to 1.9.0 (#3814)
* Update Kotlin to 1.9.0 * Get rid of legacy JS post 1.9.0 * Stop publishing into NPM * Stop testing on exotic JS targets * Update DebugProbesKt.bin Fixes #3812
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index d82b7863..e675caef 100644
--- a/README.md
+++ b/README.md
@@ -4,11 +4,11 @@
[![JetBrains official project](https://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
[![Download](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.7.2)](https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.7.2)
-[![Kotlin](https://img.shields.io/badge/kotlin-1.8.20-blue.svg?logo=kotlin)](http://kotlinlang.org)
+[![Kotlin](https://img.shields.io/badge/kotlin-1.9.0-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Slack channel](https://img.shields.io/badge/chat-slack-green.svg?logo=slack)](https://kotlinlang.slack.com/messages/coroutines/)
Library support for Kotlin coroutines with [multiplatform](#multiplatform) support.
-This is a companion version for the Kotlin `1.8.20` release.
+This is a companion version for the Kotlin `1.9.0` release.
```kotlin
suspend fun main() = coroutineScope {
@@ -93,7 +93,7 @@ And make sure that you use the latest Kotlin version:
```xml
<properties>
- <kotlin.version>1.8.20</kotlin.version>
+ <kotlin.version>1.9.0</kotlin.version>
</properties>
```
@@ -112,10 +112,10 @@ And make sure that you use the latest Kotlin version:
```kotlin
plugins {
// For build.gradle.kts (Kotlin DSL)
- kotlin("jvm") version "1.8.20"
+ kotlin("jvm") version "1.9.0"
// For build.gradle (Groovy DSL)
- id "org.jetbrains.kotlin.jvm" version "1.8.20"
+ id "org.jetbrains.kotlin.jvm" version "1.9.0"
}
```