3
3
[ ![ Kotlin Stable] ( https://kotl.in/badges/stable.svg )] ( https://kotlinlang.org/docs/components-stability.html )
4
4
[ ![ JetBrains official project] ( https://jb.gg/badges/official.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
5
5
[ ![ 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 )
7
7
[ ![ Kotlin] ( https://img.shields.io/badge/kotlin-2.0.0-blue.svg?logo=kotlin )] ( http://kotlinlang.org )
8
8
[ ![ Slack channel] ( https://img.shields.io/badge/chat-slack-green.svg?logo=slack )] ( https://kotlinlang.slack.com/messages/coroutines/ )
9
9
@@ -85,7 +85,7 @@ Add dependencies (you can also add other modules that you need):
85
85
<dependency >
86
86
<groupId >org.jetbrains.kotlinx</groupId >
87
87
<artifactId >kotlinx-coroutines-core</artifactId >
88
- <version >1.9.0-RC</version >
88
+ <version >1.9.0-RC.2 </version >
89
89
</dependency >
90
90
```
91
91
@@ -103,7 +103,7 @@ Add dependencies (you can also add other modules that you need):
103
103
104
104
``` kotlin
105
105
dependencies {
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 " )
107
107
}
108
108
```
109
109
@@ -133,7 +133,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
133
133
module as a dependency when using ` kotlinx.coroutines ` on Android:
134
134
135
135
``` 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 " )
137
137
```
138
138
139
139
This 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
168
168
``` kotlin
169
169
commonMain {
170
170
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 " )
172
172
}
173
173
}
174
174
```
@@ -178,7 +178,7 @@ Platform-specific dependencies are recommended to be used only for non-multiplat
178
178
#### JS
179
179
180
180
Kotlin/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 )
182
182
(follow the link to get the dependency declaration snippet).
183
183
184
184
#### Native
0 commit comments