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.2 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.3.2 )
5
+ [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=1.3.3 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.3.3 )
6
6
7
7
Library support for Kotlin coroutines with [ multiplatform] ( #multiplatform ) support.
8
8
This is a companion version for Kotlin ` 1.3.61 ` release.
@@ -82,7 +82,7 @@ Add dependencies (you can also add other modules that you need):
82
82
<dependency >
83
83
<groupId >org.jetbrains.kotlinx</groupId >
84
84
<artifactId >kotlinx-coroutines-core</artifactId >
85
- <version >1.3.2 </version >
85
+ <version >1.3.3 </version >
86
86
</dependency >
87
87
```
88
88
@@ -100,7 +100,7 @@ Add dependencies (you can also add other modules that you need):
100
100
101
101
``` groovy
102
102
dependencies {
103
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.2 '
103
+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 '
104
104
}
105
105
```
106
106
@@ -126,7 +126,7 @@ Add dependencies (you can also add other modules that you need):
126
126
127
127
``` groovy
128
128
dependencies {
129
- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.2 ")
129
+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3 ")
130
130
}
131
131
```
132
132
@@ -145,7 +145,7 @@ Make sure that you have either `jcenter()` or `mavenCentral()` in the list of re
145
145
Core modules of ` kotlinx.coroutines ` are also available for
146
146
[ Kotlin/JS] ( #js ) and [ Kotlin/Native] ( #native ) .
147
147
In 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.2 /jar )
148
+ [ ` kotlinx-coroutines-core-common ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-common/1.3.3 /jar )
149
149
(follow the link to get the dependency declaration snippet).
150
150
151
151
### Android
@@ -154,7 +154,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
154
154
module as dependency when using ` kotlinx.coroutines ` on Android:
155
155
156
156
``` groovy
157
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.2 '
157
+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3 '
158
158
```
159
159
160
160
This 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
173
173
### JS
174
174
175
175
[ 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.2 /jar )
176
+ [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.3.3 /jar )
177
177
(follow the link to get the dependency declaration snippet).
178
178
179
179
You can also use [ ` kotlinx-coroutines-core ` ] ( https://www.npmjs.com/package/kotlinx-coroutines-core ) package via NPM.
180
180
181
181
### Native
182
182
183
183
[ 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.2 /jar )
184
+ [ ` kotlinx-coroutines-core-native ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-native/1.3.3 /jar )
185
185
(follow the link to get the dependency declaration snippet).
186
186
187
187
Only single-threaded code (JS-style) on Kotlin/Native is currently supported.
0 commit comments