22
33[ ![ official JetBrains project] ( https://jb.gg/badges/official.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
44[ ![ GitHub license] ( https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat )] ( https://www.apache.org/licenses/LICENSE-2.0 )
5- [ ![ Download] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.0 )] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.0 /pom )
6- [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.6.0 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
5+ [ ![ Download] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.1 )] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.1 /pom )
6+ [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.6.1 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
77[ ![ Slack channel] ( https://img.shields.io/badge/chat-slack-green.svg?logo=slack )] ( https://kotlinlang.slack.com/messages/coroutines/ )
88
99Library support for Kotlin coroutines with [ multiplatform] ( #multiplatform ) support.
10- This is a companion version for the Kotlin ` 1.6.0 ` release.
10+ This is a companion version for the Kotlin ` 1.6.1 ` release.
1111
1212``` kotlin
1313suspend fun main () = coroutineScope {
@@ -83,7 +83,7 @@ Add dependencies (you can also add other modules that you need):
8383<dependency >
8484 <groupId >org.jetbrains.kotlinx</groupId >
8585 <artifactId >kotlinx-coroutines-core</artifactId >
86- <version >1.6.0 </version >
86+ <version >1.6.1 </version >
8787</dependency >
8888```
8989
@@ -101,7 +101,7 @@ Add dependencies (you can also add other modules that you need):
101101
102102``` kotlin
103103dependencies {
104- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0 " )
104+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1 " )
105105}
106106```
107107
@@ -131,7 +131,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
131131module as a dependency when using ` kotlinx.coroutines ` on Android:
132132
133133``` kotlin
134- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0 " )
134+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1 " )
135135```
136136
137137This gives you access to the Android [ Dispatchers.Main]
@@ -166,7 +166,7 @@ In common code that should get compiled for different platforms, you can add a d
166166``` kotlin
167167commonMain {
168168 dependencies {
169- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0 " )
169+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1 " )
170170 }
171171}
172172```
@@ -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://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.6.0 /jar )
181+ [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.6.1 /jar )
182182(follow the link to get the dependency declaration snippet) and as [ ` kotlinx-coroutines-core ` ] ( https://www.npmjs.com/package/kotlinx-coroutines-core ) NPM package.
183183
184184#### Native
0 commit comments