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.11.0-rc01 )] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.11.0-rc01 )
6+ [ ![ Download] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.11.0-rc02 )] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.11.0-rc02 )
77[ ![ Kotlin] ( https://img.shields.io/badge/kotlin-2.2.20-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/ )
@@ -87,7 +87,7 @@ Add dependencies (you can also add other modules that you need):
8787<dependency >
8888 <groupId >org.jetbrains.kotlinx</groupId >
8989 <artifactId >kotlinx-coroutines-core</artifactId >
90- <version >1.11.0-rc01 </version >
90+ <version >1.11.0-rc02 </version >
9191</dependency >
9292```
9393
@@ -105,7 +105,7 @@ Add dependencies (you can also add other modules that you need):
105105
106106``` kotlin
107107dependencies {
108- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0-rc01 " )
108+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0-rc02 " )
109109}
110110```
111111
@@ -135,7 +135,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
135135module as a dependency when using ` kotlinx.coroutines ` on Android:
136136
137137``` kotlin
138- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-android:1.11.0-rc01 " )
138+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-android:1.11.0-rc02 " )
139139```
140140
141141This gives you access to the Android [ Dispatchers.Main]
@@ -170,7 +170,7 @@ In common code that should get compiled for different platforms, you can add a d
170170``` kotlin
171171commonMain {
172172 dependencies {
173- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0-rc01 " )
173+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0-rc02 " )
174174 }
175175}
176176```
@@ -180,7 +180,7 @@ Platform-specific dependencies are recommended to be used only for non-multiplat
180180#### JS
181181
182182Kotlin/JS version of ` kotlinx.coroutines ` is published as
183- [ ` kotlinx-coroutines-core-js ` ] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.11.0-rc01 )
183+ [ ` kotlinx-coroutines-core-js ` ] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.11.0-rc02 )
184184(follow the link to get the dependency declaration snippet).
185185
186186#### Native
0 commit comments