3
3
[ ![ Kotlin Stable] ( https://kotl.in/badges/stable.svg )] ( https://kotlinlang.org/docs/components-stability.html )
4
4
[ ![ JetBrains official project] ( https://jb.gg/badges/official.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
5
5
[ ![ GitHub license] ( https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat )] ( https://www.apache.org/licenses/LICENSE-2.0 )
6
- [ ![ Download] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.3 )] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.3 /pom )
7
- [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.6.21 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
6
+ [ ![ Download] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.2 )] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.2 /pom )
7
+ [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.6.0 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
8
8
[ ![ Slack channel] ( https://img.shields.io/badge/chat-slack-green.svg?logo=slack )] ( https://kotlinlang.slack.com/messages/coroutines/ )
9
9
10
10
Library support for Kotlin coroutines with [ multiplatform] ( #multiplatform ) support.
11
- This is a companion version for the Kotlin ` 1.6.21 ` release.
11
+ This is a companion version for the Kotlin ` 1.7.10 ` release.
12
12
13
13
``` kotlin
14
14
suspend fun main () = coroutineScope {
@@ -84,15 +84,15 @@ 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.6.3 </version >
87
+ <version >1.6.2 </version >
88
88
</dependency >
89
89
```
90
90
91
91
And make sure that you use the latest Kotlin version:
92
92
93
93
``` xml
94
94
<properties >
95
- <kotlin .version>1.6.21 </kotlin .version>
95
+ <kotlin .version>1.7.10 </kotlin .version>
96
96
</properties >
97
97
```
98
98
@@ -111,10 +111,10 @@ And make sure that you use the latest Kotlin version:
111
111
``` kotlin
112
112
plugins {
113
113
// For build.gradle.kts (Kotlin DSL)
114
- kotlin(" jvm" ) version " 1.6.21 "
114
+ kotlin(" jvm" ) version " 1.7.10 "
115
115
116
116
// For build.gradle (Groovy DSL)
117
- id " org.jetbrains.kotlin.jvm" version " 1.6.21 "
117
+ id " org.jetbrains.kotlin.jvm" version " 1.7.10 "
118
118
}
119
119
```
120
120
0 commit comments