2
2
3
3
[ ![ official JetBrains project] ( https://jb.gg/badges/official.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
4
4
[ ![ 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 )
7
7
[ ![ Slack channel] ( https://img.shields.io/badge/chat-slack-green.svg?logo=slack )] ( https://kotlinlang.slack.com/messages/coroutines/ )
8
8
9
9
Library 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.
11
11
12
12
``` kotlin
13
13
suspend fun main () = coroutineScope {
@@ -83,7 +83,7 @@ Add dependencies (you can also add other modules that you need):
83
83
<dependency >
84
84
<groupId >org.jetbrains.kotlinx</groupId >
85
85
<artifactId >kotlinx-coroutines-core</artifactId >
86
- <version >1.6.0 </version >
86
+ <version >1.6.1 </version >
87
87
</dependency >
88
88
```
89
89
@@ -101,7 +101,7 @@ Add dependencies (you can also add other modules that you need):
101
101
102
102
``` kotlin
103
103
dependencies {
104
- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0 " )
104
+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1 " )
105
105
}
106
106
```
107
107
@@ -131,7 +131,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
131
131
module as a dependency when using ` kotlinx.coroutines ` on Android:
132
132
133
133
``` kotlin
134
- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0 " )
134
+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1 " )
135
135
```
136
136
137
137
This 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
166
166
``` kotlin
167
167
commonMain {
168
168
dependencies {
169
- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0 " )
169
+ implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1 " )
170
170
}
171
171
}
172
172
```
@@ -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://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 )
182
182
(follow the link to get the dependency declaration snippet) and as [ ` kotlinx-coroutines-core ` ] ( https://www.npmjs.com/package/kotlinx-coroutines-core ) NPM package.
183
183
184
184
#### Native
0 commit comments