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.2 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.4.2 )
5
+ [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=1.4.3 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.4.3 )
6
6
[ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.4.30-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
@@ -87,7 +87,7 @@ Add dependencies (you can also add other modules that you need):
87
87
<dependency >
88
88
<groupId >org.jetbrains.kotlinx</groupId >
89
89
<artifactId >kotlinx-coroutines-core</artifactId >
90
- <version >1.4.2 </version >
90
+ <version >1.4.3 </version >
91
91
</dependency >
92
92
```
93
93
@@ -105,7 +105,7 @@ Add dependencies (you can also add other modules that you need):
105
105
106
106
``` groovy
107
107
dependencies {
108
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2 '
108
+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3 '
109
109
}
110
110
```
111
111
@@ -131,7 +131,7 @@ Add dependencies (you can also add other modules that you need):
131
131
132
132
``` groovy
133
133
dependencies {
134
- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2 ")
134
+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3 ")
135
135
}
136
136
```
137
137
@@ -151,7 +151,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
151
151
module as dependency when using ` kotlinx.coroutines ` on Android:
152
152
153
153
``` groovy
154
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.2 '
154
+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3 '
155
155
```
156
156
157
157
This gives you access to Android [ Dispatchers.Main]
@@ -184,7 +184,7 @@ In common code that should get compiled for different platforms, you can add dep
184
184
``` groovy
185
185
commonMain {
186
186
dependencies {
187
- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2 ")
187
+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3 ")
188
188
}
189
189
}
190
190
```
@@ -196,7 +196,7 @@ Platform-specific dependencies are recommended to be used only for non-multiplat
196
196
#### JS
197
197
198
198
Kotlin/JS version of ` kotlinx.coroutines ` is published as
199
- [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.4.2 /jar )
199
+ [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.4.3 /jar )
200
200
(follow the link to get the dependency declaration snippet) and as [ ` kotlinx-coroutines-core ` ] ( https://www.npmjs.com/package/kotlinx-coroutines-core ) NPM package.
201
201
202
202
#### Native
0 commit comments