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-M1 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.3.0-M1 )
5
+ [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=1.3.0-M2 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.3.0-M2 )
6
6
7
7
Library support for Kotlin coroutines with [ multiplatform] ( #multiplatform ) support.
8
8
This is a companion version for Kotlin ` 1.3.40 ` release.
@@ -81,7 +81,7 @@ Add dependencies (you can also add other modules that you need):
81
81
<dependency >
82
82
<groupId >org.jetbrains.kotlinx</groupId >
83
83
<artifactId >kotlinx-coroutines-core</artifactId >
84
- <version >1.3.0-M1 </version >
84
+ <version >1.3.0-M2 </version >
85
85
</dependency >
86
86
```
87
87
@@ -99,7 +99,7 @@ Add dependencies (you can also add other modules that you need):
99
99
100
100
``` groovy
101
101
dependencies {
102
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0-M1 '
102
+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0-M2 '
103
103
}
104
104
```
105
105
@@ -125,7 +125,7 @@ Add dependencies (you can also add other modules that you need):
125
125
126
126
``` groovy
127
127
dependencies {
128
- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0-M1 ")
128
+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0-M2 ")
129
129
}
130
130
```
131
131
@@ -144,7 +144,7 @@ Make sure that you have either `jcenter()` or `mavenCentral()` in the list of re
144
144
Core modules of ` kotlinx.coroutines ` are also available for
145
145
[ Kotlin/JS] ( #js ) and [ Kotlin/Native] ( #native ) .
146
146
In common code that should get compiled for different platforms, add dependency to
147
- [ ` kotlinx-coroutines-core-common ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-common/1.3.0-M1 /jar )
147
+ [ ` kotlinx-coroutines-core-common ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-common/1.3.0-M2 /jar )
148
148
(follow the link to get the dependency declaration snippet).
149
149
150
150
### Android
@@ -153,7 +153,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
153
153
module as dependency when using ` kotlinx.coroutines ` on Android:
154
154
155
155
``` groovy
156
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.0-M1 '
156
+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.0-M2 '
157
157
```
158
158
159
159
This gives you access to Android [ Dispatchers.Main] ( https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-android/kotlinx.coroutines.android/kotlinx.coroutines.-dispatchers/index.html )
@@ -172,15 +172,15 @@ R8 is a replacement for ProGuard in Android ecosystem, it is enabled by default
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.0-M1 /jar )
175
+ [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.3.0-M2 /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.0-M1 /jar )
183
+ [ ` kotlinx-coroutines-core-native ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-native/1.3.0-M2 /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