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.1 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.3.1 )
5+ [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=1.3.2 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.3.2 )
66
77Library support for Kotlin coroutines with [ multiplatform] ( #multiplatform ) support.
88This is a companion version for Kotlin ` 1.3.50 ` release.
@@ -82,7 +82,7 @@ Add dependencies (you can also add other modules that you need):
8282<dependency >
8383 <groupId >org.jetbrains.kotlinx</groupId >
8484 <artifactId >kotlinx-coroutines-core</artifactId >
85- <version >1.3.1 </version >
85+ <version >1.3.2 </version >
8686</dependency >
8787```
8888
@@ -100,7 +100,7 @@ Add dependencies (you can also add other modules that you need):
100100
101101``` groovy
102102dependencies {
103- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.1 '
103+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.2 '
104104}
105105```
106106
@@ -126,7 +126,7 @@ Add dependencies (you can also add other modules that you need):
126126
127127``` groovy
128128dependencies {
129- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.1 ")
129+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.2 ")
130130}
131131```
132132
@@ -145,7 +145,7 @@ Make sure that you have either `jcenter()` or `mavenCentral()` in the list of re
145145Core modules of ` kotlinx.coroutines ` are also available for
146146[ Kotlin/JS] ( #js ) and [ Kotlin/Native] ( #native ) .
147147In common code that should get compiled for different platforms, add dependency to
148- [ ` kotlinx-coroutines-core-common ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-common/1.3.1 /jar )
148+ [ ` kotlinx-coroutines-core-common ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-common/1.3.2 /jar )
149149(follow the link to get the dependency declaration snippet).
150150
151151### Android
@@ -154,7 +154,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
154154module as dependency when using ` kotlinx.coroutines ` on Android:
155155
156156``` groovy
157- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.1 '
157+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.2 '
158158```
159159
160160This gives you access to Android [ Dispatchers.Main]
@@ -173,15 +173,15 @@ R8 is a replacement for ProGuard in Android ecosystem, it is enabled by default
173173### JS
174174
175175[ Kotlin/JS] ( https://kotlinlang.org/docs/reference/js-overview.html ) version of ` kotlinx.coroutines ` is published as
176- [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.3.1 /jar )
176+ [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.3.2 /jar )
177177(follow the link to get the dependency declaration snippet).
178178
179179You can also use [ ` kotlinx-coroutines-core ` ] ( https://www.npmjs.com/package/kotlinx-coroutines-core ) package via NPM.
180180
181181### Native
182182
183183[ Kotlin/Native] ( https://kotlinlang.org/docs/reference/native-overview.html ) version of ` kotlinx.coroutines ` is published as
184- [ ` kotlinx-coroutines-core-native ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-native/1.3.1 /jar )
184+ [ ` kotlinx-coroutines-core-native ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-native/1.3.2 /jar )
185185(follow the link to get the dependency declaration snippet).
186186
187187Only single-threaded code (JS-style) on Kotlin/Native is currently supported.
0 commit comments