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.3.6 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.3.6 )
5+ [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=1.3.7 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.3.7 )
66
77Library support for Kotlin coroutines with [ multiplatform] ( #multiplatform ) support.
88This is a companion version for Kotlin ` 1.3.71 ` release.
@@ -84,7 +84,7 @@ Add dependencies (you can also add other modules that you need):
8484<dependency >
8585 <groupId >org.jetbrains.kotlinx</groupId >
8686 <artifactId >kotlinx-coroutines-core</artifactId >
87- <version >1.3.6 </version >
87+ <version >1.3.7 </version >
8888</dependency >
8989```
9090
@@ -102,7 +102,7 @@ Add dependencies (you can also add other modules that you need):
102102
103103``` groovy
104104dependencies {
105- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.6 '
105+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7 '
106106}
107107```
108108
@@ -128,7 +128,7 @@ Add dependencies (you can also add other modules that you need):
128128
129129``` groovy
130130dependencies {
131- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.6 ")
131+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7 ")
132132}
133133```
134134
@@ -147,7 +147,7 @@ Make sure that you have either `jcenter()` or `mavenCentral()` in the list of re
147147Core modules of ` kotlinx.coroutines ` are also available for
148148[ Kotlin/JS] ( #js ) and [ Kotlin/Native] ( #native ) .
149149In common code that should get compiled for different platforms, add dependency to
150- [ ` kotlinx-coroutines-core-common ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-common/1.3.6 /jar )
150+ [ ` kotlinx-coroutines-core-common ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-common/1.3.7 /jar )
151151(follow the link to get the dependency declaration snippet).
152152
153153### Android
@@ -156,7 +156,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
156156module as dependency when using ` kotlinx.coroutines ` on Android:
157157
158158``` groovy
159- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.6 '
159+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 '
160160```
161161
162162This gives you access to Android [ Dispatchers.Main]
@@ -172,15 +172,15 @@ For more details see ["Optimization" section for Android](ui/kotlinx-coroutines-
172172### JS
173173
174174[ Kotlin/JS] ( https://kotlinlang.org/docs/reference/js-overview.html ) version of ` kotlinx.coroutines ` is published as
175- [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.3.6 /jar )
175+ [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.3.7 /jar )
176176(follow the link to get the dependency declaration snippet).
177177
178178You can also use [ ` kotlinx-coroutines-core ` ] ( https://www.npmjs.com/package/kotlinx-coroutines-core ) package via NPM.
179179
180180### Native
181181
182182[ Kotlin/Native] ( https://kotlinlang.org/docs/reference/native-overview.html ) version of ` kotlinx.coroutines ` is published as
183- [ ` kotlinx-coroutines-core-native ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-native/1.3.6 /jar )
183+ [ ` kotlinx-coroutines-core-native ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-native/1.3.7 /jar )
184184(follow the link to get the dependency declaration snippet).
185185
186186Only single-threaded code (JS-style) on Kotlin/Native is currently supported.
0 commit comments