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.10.0 )] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.10.0 )
6+ [ ![ Download] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.10.1 )] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.10.1 )
77[ ![ Kotlin] ( https://img.shields.io/badge/kotlin-2.0.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/ )
@@ -86,7 +86,7 @@ Add dependencies (you can also add other modules that you need):
8686<dependency >
8787 <groupId >org.jetbrains.kotlinx</groupId >
8888 <artifactId >kotlinx-coroutines-core</artifactId >
89- <version >1.10.0 </version >
89+ <version >1.10.1 </version >
9090</dependency >
9191```
9292
@@ -104,7 +104,7 @@ Add dependencies (you can also add other modules that you need):
104104
105105``` kotlin
106106dependencies {
107- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.0 " )
107+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 " )
108108}
109109```
110110
@@ -134,7 +134,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
134134module as a dependency when using ` kotlinx.coroutines ` on Android:
135135
136136``` kotlin
137- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.0 " )
137+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.1 " )
138138```
139139
140140This gives you access to the Android [ Dispatchers.Main]
@@ -169,7 +169,7 @@ In common code that should get compiled for different platforms, you can add a d
169169``` kotlin
170170commonMain {
171171 dependencies {
172- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.0 " )
172+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1 " )
173173 }
174174}
175175```
@@ -179,7 +179,7 @@ Platform-specific dependencies are recommended to be used only for non-multiplat
179179#### JS
180180
181181Kotlin/JS version of ` kotlinx.coroutines ` is published as
182- [ ` kotlinx-coroutines-core-js ` ] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.10.0 )
182+ [ ` kotlinx-coroutines-core-js ` ] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.10.1 )
183183(follow the link to get the dependency declaration snippet).
184184
185185#### Native
0 commit comments