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.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 )
6
6
7
7
Library support for Kotlin coroutines with [ multiplatform] ( #multiplatform ) support.
8
8
This 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):
83
83
<dependency >
84
84
<groupId >org.jetbrains.kotlinx</groupId >
85
85
<artifactId >kotlinx-coroutines-core</artifactId >
86
- <version >1.3.0 </version >
86
+ <version >1.3.1 </version >
87
87
</dependency >
88
88
```
89
89
@@ -101,7 +101,7 @@ Add dependencies (you can also add other modules that you need):
101
101
102
102
``` groovy
103
103
dependencies {
104
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0 '
104
+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.1 '
105
105
}
106
106
```
107
107
@@ -127,7 +127,7 @@ Add dependencies (you can also add other modules that you need):
127
127
128
128
``` groovy
129
129
dependencies {
130
- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0 ")
130
+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.1 ")
131
131
}
132
132
```
133
133
@@ -146,7 +146,7 @@ Make sure that you have either `jcenter()` or `mavenCentral()` in the list of re
146
146
Core modules of ` kotlinx.coroutines ` are also available for
147
147
[ Kotlin/JS] ( #js ) and [ Kotlin/Native] ( #native ) .
148
148
In 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 )
150
150
(follow the link to get the dependency declaration snippet).
151
151
152
152
### Android
@@ -155,7 +155,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
155
155
module as dependency when using ` kotlinx.coroutines ` on Android:
156
156
157
157
``` groovy
158
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.0 '
158
+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.1 '
159
159
```
160
160
161
161
This 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
174
174
### JS
175
175
176
176
[ 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 )
178
178
(follow the link to get the dependency declaration snippet).
179
179
180
180
You can also use [ ` kotlinx-coroutines-core ` ] ( https://www.npmjs.com/package/kotlinx-coroutines-core ) package via NPM.
181
181
182
182
### Native
183
183
184
184
[ 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 )
186
186
(follow the link to get the dependency declaration snippet).
187
187
188
188
Only single-threaded code (JS-style) on Kotlin/Native is currently supported.
0 commit comments