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.0 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.3.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 )
66
77Library support for Kotlin coroutines with [ multiplatform] ( #multiplatform ) support.
88This is a companion version for Kotlin ` 1.3.50 ` release.
@@ -83,7 +83,7 @@ Add dependencies (you can also add other modules that you need):
8383<dependency >
8484 <groupId >org.jetbrains.kotlinx</groupId >
8585 <artifactId >kotlinx-coroutines-core</artifactId >
86- <version >1.3.0 </version >
86+ <version >1.3.1 </version >
8787</dependency >
8888```
8989
@@ -101,7 +101,7 @@ Add dependencies (you can also add other modules that you need):
101101
102102``` groovy
103103dependencies {
104- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0 '
104+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.1 '
105105}
106106```
107107
@@ -127,7 +127,7 @@ Add dependencies (you can also add other modules that you need):
127127
128128``` groovy
129129dependencies {
130- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0 ")
130+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.1 ")
131131}
132132```
133133
@@ -146,7 +146,7 @@ Make sure that you have either `jcenter()` or `mavenCentral()` in the list of re
146146Core modules of ` kotlinx.coroutines ` are also available for
147147[ Kotlin/JS] ( #js ) and [ Kotlin/Native] ( #native ) .
148148In common code that should get compiled for different platforms, add dependency to
149- [ ` kotlinx-coroutines-core-common ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-common/1.3.0 /jar )
149+ [ ` kotlinx-coroutines-core-common ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-common/1.3.1 /jar )
150150(follow the link to get the dependency declaration snippet).
151151
152152### Android
@@ -155,7 +155,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
155155module as dependency when using ` kotlinx.coroutines ` on Android:
156156
157157``` groovy
158- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.0 '
158+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.1 '
159159```
160160
161161This gives you access to Android [ Dispatchers.Main]
@@ -174,15 +174,15 @@ R8 is a replacement for ProGuard in Android ecosystem, it is enabled by default
174174### JS
175175
176176[ Kotlin/JS] ( https://kotlinlang.org/docs/reference/js-overview.html ) version of ` kotlinx.coroutines ` is published as
177- [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.3.0 /jar )
177+ [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.3.1 /jar )
178178(follow the link to get the dependency declaration snippet).
179179
180180You can also use [ ` kotlinx-coroutines-core ` ] ( https://www.npmjs.com/package/kotlinx-coroutines-core ) package via NPM.
181181
182182### Native
183183
184184[ Kotlin/Native] ( https://kotlinlang.org/docs/reference/native-overview.html ) version of ` kotlinx.coroutines ` is published as
185- [ ` kotlinx-coroutines-core-native ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-native/1.3.0 /jar )
185+ [ ` kotlinx-coroutines-core-native ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-native/1.3.1 /jar )
186186(follow the link to get the dependency declaration snippet).
187187
188188Only single-threaded code (JS-style) on Kotlin/Native is currently supported.
0 commit comments