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://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 )
66[ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.4.30-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
@@ -87,7 +87,7 @@ Add dependencies (you can also add other modules that you need):
8787<dependency >
8888 <groupId >org.jetbrains.kotlinx</groupId >
8989 <artifactId >kotlinx-coroutines-core</artifactId >
90- <version >1.4.2 </version >
90+ <version >1.4.3 </version >
9191</dependency >
9292```
9393
@@ -105,7 +105,7 @@ Add dependencies (you can also add other modules that you need):
105105
106106``` groovy
107107dependencies {
108- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2 '
108+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3 '
109109}
110110```
111111
@@ -131,7 +131,7 @@ Add dependencies (you can also add other modules that you need):
131131
132132``` groovy
133133dependencies {
134- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2 ")
134+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3 ")
135135}
136136```
137137
@@ -151,7 +151,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
151151module as dependency when using ` kotlinx.coroutines ` on Android:
152152
153153``` groovy
154- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.2 '
154+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3 '
155155```
156156
157157This 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
184184``` groovy
185185commonMain {
186186 dependencies {
187- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2 ")
187+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3 ")
188188 }
189189}
190190```
@@ -196,7 +196,7 @@ Platform-specific dependencies are recommended to be used only for non-multiplat
196196#### JS
197197
198198Kotlin/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 )
200200(follow the link to get the dependency declaration snippet) and as [ ` kotlinx-coroutines-core ` ] ( https://www.npmjs.com/package/kotlinx-coroutines-core ) NPM package.
201201
202202#### Native
0 commit comments