2
2
3
3
[ ![ official JetBrains project] ( http://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 )] ( http://www.apache.org/licenses/LICENSE-2.0 )
5
- [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=1.1.0 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.1.0 )
5
+ [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=1.1.1 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.1.1 )
6
6
7
7
Library support for Kotlin coroutines with [ multiplatform] ( #multiplatform ) support.
8
8
This is a companion version for Kotlin ` 1.3.11 ` release.
@@ -74,7 +74,7 @@ Add dependencies (you can also add other modules that you need):
74
74
<dependency >
75
75
<groupId >org.jetbrains.kotlinx</groupId >
76
76
<artifactId >kotlinx-coroutines-core</artifactId >
77
- <version >1.1.0 </version >
77
+ <version >1.1.1 </version >
78
78
</dependency >
79
79
```
80
80
@@ -92,7 +92,7 @@ Add dependencies (you can also add other modules that you need):
92
92
93
93
``` groovy
94
94
dependencies {
95
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.0 '
95
+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1 '
96
96
}
97
97
```
98
98
@@ -118,7 +118,7 @@ Add dependencies (you can also add other modules that you need):
118
118
119
119
``` groovy
120
120
dependencies {
121
- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.0 ")
121
+ implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1 ")
122
122
}
123
123
```
124
124
@@ -146,7 +146,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
146
146
module as dependency when using ` kotlinx.coroutines ` on Android:
147
147
148
148
``` groovy
149
- implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.1.0 '
149
+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.1.1 '
150
150
```
151
151
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 )
152
152
coroutine dispatcher and also makes sure that in case of crashed coroutine with unhandled exception this
0 commit comments