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://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.5.1 )] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.5.1 /pom )
6- [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.5.20 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
5+ [ ![ Download] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.5.2 )] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.5.2 /pom )
6+ [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.5.30 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
77[ ![ Slack channel] ( https://img.shields.io/badge/chat-slack-green.svg?logo=slack )] ( https://kotlinlang.slack.com/messages/coroutines/ )
88
99Library support for Kotlin coroutines with [ multiplatform] ( #multiplatform ) support.
10- This is a companion version for the Kotlin ` 1.5.20 ` release.
10+ This is a companion version for the Kotlin ` 1.5.30 ` release.
1111
1212``` kotlin
1313suspend fun main () = coroutineScope {
@@ -83,15 +83,15 @@ Add dependencies (you can also add other modules that you need):
8383<dependency >
8484 <groupId >org.jetbrains.kotlinx</groupId >
8585 <artifactId >kotlinx-coroutines-core</artifactId >
86- <version >1.5.1 </version >
86+ <version >1.5.2 </version >
8787</dependency >
8888```
8989
9090And make sure that you use the latest Kotlin version:
9191
9292``` xml
9393<properties >
94- <kotlin .version>1.5.20 </kotlin .version>
94+ <kotlin .version>1.5.30 </kotlin .version>
9595</properties >
9696```
9797
@@ -101,15 +101,15 @@ Add dependencies (you can also add other modules that you need):
101101
102102``` groovy
103103dependencies {
104- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1 '
104+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2 '
105105}
106106```
107107
108108And make sure that you use the latest Kotlin version:
109109
110110``` groovy
111111buildscript {
112- ext.kotlin_version = '1.5.20 '
112+ ext.kotlin_version = '1.5.30 '
113113}
114114```
115115
@@ -127,7 +127,7 @@ Add dependencies (you can also add other modules that you need):
127127
128128``` groovy
129129dependencies {
130- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1 ")
130+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2 ")
131131}
132132```
133133
@@ -147,7 +147,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
147147module as a dependency when using ` kotlinx.coroutines ` on Android:
148148
149149``` groovy
150- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.1 '
150+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2 '
151151```
152152
153153This gives you access to the Android [ Dispatchers.Main]
@@ -180,7 +180,7 @@ In common code that should get compiled for different platforms, you can add a d
180180``` groovy
181181commonMain {
182182 dependencies {
183- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1 ")
183+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2 ")
184184 }
185185}
186186```
@@ -192,7 +192,7 @@ Platform-specific dependencies are recommended to be used only for non-multiplat
192192#### JS
193193
194194Kotlin/JS version of ` kotlinx.coroutines ` is published as
195- [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.5.1 /jar )
195+ [ ` kotlinx-coroutines-core-js ` ] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.5.2 /jar )
196196(follow the link to get the dependency declaration snippet) and as [ ` kotlinx-coroutines-core ` ] ( https://www.npmjs.com/package/kotlinx-coroutines-core ) NPM package.
197197
198198#### Native
0 commit comments