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.7 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.3.7 )
5
+ [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=1.3.8 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.3.8 )
6
6
7
7
Library support for Kotlin coroutines with [ multiplatform] ( #multiplatform ) support.
8
8
This 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):
84
84
<dependency >
85
85
<groupId >org.jetbrains.kotlinx</groupId >
86
86
<artifactId >kotlinx-coroutines-core</artifactId >
87
- <version >1.3.7 </version >
87
+ <version >1.3.8 </version >
88
88
</dependency >
89
89
```
90
90
@@ -102,7 +102,7 @@ Add dependencies (you can also add other modules that you need):
102
102
103
103
``` groovy
104
104
dependencies {
105
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7 '
105
+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8 '
106
106
}
107
107
```
108
108
@@ -128,7 +128,7 @@ Add dependencies (you can also add other modules that you need):
128
128
129
129
``` groovy
130
130
dependencies {
131
- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7 ")
131
+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8 ")
132
132
}
133
133
```
134
134
@@ -147,7 +147,7 @@ Make sure that you have either `jcenter()` or `mavenCentral()` in the list of re
147
147
Core modules of ` kotlinx.coroutines ` are also available for
148
148
[ Kotlin/JS] ( #js ) and [ Kotlin/Native] ( #native ) .
149
149
In 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.7 /jar )
150
+ [ ` kotlinx-coroutines-core-common ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-common/1.3.8 /jar )
151
151
(follow the link to get the dependency declaration snippet).
152
152
153
153
### Android
@@ -156,7 +156,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
156
156
module as dependency when using ` kotlinx.coroutines ` on Android:
157
157
158
158
``` groovy
159
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7 '
159
+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.8 '
160
160
```
161
161
162
162
This gives you access to Android [ Dispatchers.Main]
@@ -172,15 +172,15 @@ For more details see ["Optimization" section for Android](ui/kotlinx-coroutines-
172
172
### JS
173
173
174
174
[ 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.7 /jar )
175
+ [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.3.8 /jar )
176
176
(follow the link to get the dependency declaration snippet).
177
177
178
178
You can also use [ ` kotlinx-coroutines-core ` ] ( https://www.npmjs.com/package/kotlinx-coroutines-core ) package via NPM.
179
179
180
180
### Native
181
181
182
182
[ 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.7 /jar )
183
+ [ ` kotlinx-coroutines-core-native ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-native/1.3.8 /jar )
184
184
(follow the link to get the dependency declaration snippet).
185
185
186
186
Only single-threaded code (JS-style) on Kotlin/Native is currently supported.
0 commit comments