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://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=1.4.1 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.4.1 )
5
+ [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=1.4.2 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.4.2 )
6
6
[ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.4.0-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
@@ -86,7 +86,7 @@ Add dependencies (you can also add other modules that you need):
86
86
<dependency >
87
87
<groupId >org.jetbrains.kotlinx</groupId >
88
88
<artifactId >kotlinx-coroutines-core</artifactId >
89
- <version >1.4.1 </version >
89
+ <version >1.4.2 </version >
90
90
</dependency >
91
91
```
92
92
@@ -104,7 +104,7 @@ Add dependencies (you can also add other modules that you need):
104
104
105
105
``` groovy
106
106
dependencies {
107
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1 '
107
+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2 '
108
108
}
109
109
```
110
110
@@ -130,7 +130,7 @@ Add dependencies (you can also add other modules that you need):
130
130
131
131
``` groovy
132
132
dependencies {
133
- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1 ")
133
+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2 ")
134
134
}
135
135
```
136
136
@@ -152,7 +152,7 @@ In common code that should get compiled for different platforms, you can add dep
152
152
``` groovy
153
153
commonMain {
154
154
dependencies {
155
- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1 ")
155
+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2 ")
156
156
}
157
157
}
158
158
```
@@ -163,7 +163,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
163
163
module as dependency when using ` kotlinx.coroutines ` on Android:
164
164
165
165
``` groovy
166
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1 '
166
+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.2 '
167
167
```
168
168
169
169
This gives you access to Android [ Dispatchers.Main]
@@ -190,15 +190,15 @@ packagingOptions {
190
190
### JS
191
191
192
192
[ Kotlin/JS] ( https://kotlinlang.org/docs/reference/js-overview.html ) version of ` kotlinx.coroutines ` is published as
193
- [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.4.1 /jar )
193
+ [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.4.2 /jar )
194
194
(follow the link to get the dependency declaration snippet).
195
195
196
196
You can also use [ ` kotlinx-coroutines-core ` ] ( https://www.npmjs.com/package/kotlinx-coroutines-core ) package via NPM.
197
197
198
198
### Native
199
199
200
200
[ Kotlin/Native] ( https://kotlinlang.org/docs/reference/native-overview.html ) version of ` kotlinx.coroutines ` is published as
201
- [ ` kotlinx-coroutines-core-native ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-native/1.4.1 /jar )
201
+ [ ` kotlinx-coroutines-core-native ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-native/1.4.2 /jar )
202
202
(follow the link to get the dependency declaration snippet).
203
203
204
204
Only single-threaded code (JS-style) on Kotlin/Native is currently supported.
0 commit comments