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.2.1 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.2.1 )
5+ [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=1.2.2 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.2.2 )
66
77Library support for Kotlin coroutines with [ multiplatform] ( #multiplatform ) support.
8- This is a companion version for Kotlin ` 1.3.30 ` release.
8+ This is a companion version for Kotlin ` 1.3.40 ` release.
99
1010``` kotlin
1111suspend fun main () = coroutineScope {
@@ -81,15 +81,15 @@ Add dependencies (you can also add other modules that you need):
8181<dependency >
8282 <groupId >org.jetbrains.kotlinx</groupId >
8383 <artifactId >kotlinx-coroutines-core</artifactId >
84- <version >1.2.1 </version >
84+ <version >1.2.2 </version >
8585</dependency >
8686```
8787
8888And make sure that you use the latest Kotlin version:
8989
9090``` xml
9191<properties >
92- <kotlin .version>1.3.30 </kotlin .version>
92+ <kotlin .version>1.3.40 </kotlin .version>
9393</properties >
9494```
9595
@@ -99,15 +99,15 @@ Add dependencies (you can also add other modules that you need):
9999
100100``` groovy
101101dependencies {
102- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.1 '
102+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.2 '
103103}
104104```
105105
106106And make sure that you use the latest Kotlin version:
107107
108108``` groovy
109109buildscript {
110- ext.kotlin_version = '1.3.30 '
110+ ext.kotlin_version = '1.3.40 '
111111}
112112```
113113
@@ -125,15 +125,15 @@ Add dependencies (you can also add other modules that you need):
125125
126126``` groovy
127127dependencies {
128- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.1 ")
128+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.2 ")
129129}
130130```
131131
132132And make sure that you use the latest Kotlin version:
133133
134134``` groovy
135135plugins {
136- kotlin("jvm") version "1.3.30 "
136+ kotlin("jvm") version "1.3.40 "
137137}
138138```
139139
@@ -144,7 +144,7 @@ Make sure that you have either `jcenter()` or `mavenCentral()` in the list of re
144144Core modules of ` kotlinx.coroutines ` are also available for
145145[ Kotlin/JS] ( #js ) and [ Kotlin/Native] ( #native ) .
146146In 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.2.1 /jar )
147+ [ ` kotlinx-coroutines-core-common ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-common/1.2.2 /jar )
148148(follow the link to get the dependency declaration snippet).
149149
150150### Android
@@ -153,7 +153,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
153153module as dependency when using ` kotlinx.coroutines ` on Android:
154154
155155``` groovy
156- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.2.1 '
156+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.2.2 '
157157```
158158
159159This 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
172172### JS
173173
174174[ 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.2.1 /jar )
175+ [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.2.2 /jar )
176176(follow the link to get the dependency declaration snippet).
177177
178178You can also use [ ` kotlinx-coroutines-core ` ] ( https://www.npmjs.com/package/kotlinx-coroutines-core ) package via NPM.
179179
180180### Native
181181
182182[ 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.2.1 /jar )
183+ [ ` kotlinx-coroutines-core-native ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-native/1.2.2 /jar )
184184(follow the link to get the dependency declaration snippet).
185185
186186Only single-threaded code (JS-style) on Kotlin/Native is currently supported.
0 commit comments