33[ ![ Kotlin Stable] ( https://kotl.in/badges/stable.svg )] ( https://kotlinlang.org/docs/components-stability.html )
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 )
6- [ ![ Download] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.9.0-RC )] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.9.0-RC )
6+ [ ![ Download] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.9.0-RC.2 )] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.9.0-RC.2 )
77[ ![ Kotlin] ( https://img.shields.io/badge/kotlin-2.0.0-blue.svg?logo=kotlin )] ( http://kotlinlang.org )
88[ ![ Slack channel] ( https://img.shields.io/badge/chat-slack-green.svg?logo=slack )] ( https://kotlinlang.slack.com/messages/coroutines/ )
99
@@ -85,7 +85,7 @@ Add dependencies (you can also add other modules that you need):
8585<dependency >
8686 <groupId >org.jetbrains.kotlinx</groupId >
8787 <artifactId >kotlinx-coroutines-core</artifactId >
88- <version >1.9.0-RC</version >
88+ <version >1.9.0-RC.2 </version >
8989</dependency >
9090```
9191
@@ -103,7 +103,7 @@ Add dependencies (you can also add other modules that you need):
103103
104104``` kotlin
105105dependencies {
106- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC" )
106+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC.2 " )
107107}
108108```
109109
@@ -133,7 +133,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
133133module as a dependency when using ` kotlinx.coroutines ` on Android:
134134
135135``` kotlin
136- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0-RC" )
136+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0-RC.2 " )
137137```
138138
139139This gives you access to the Android [ Dispatchers.Main]
@@ -168,7 +168,7 @@ In common code that should get compiled for different platforms, you can add a d
168168``` kotlin
169169commonMain {
170170 dependencies {
171- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC" )
171+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC.2 " )
172172 }
173173}
174174```
@@ -178,7 +178,7 @@ Platform-specific dependencies are recommended to be used only for non-multiplat
178178#### JS
179179
180180Kotlin/JS version of ` kotlinx.coroutines ` is published as
181- [ ` kotlinx-coroutines-core-js ` ] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.9.0-RC )
181+ [ ` kotlinx-coroutines-core-js ` ] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.9.0-RC.2 )
182182(follow the link to get the dependency declaration snippet).
183183
184184#### Native
0 commit comments