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=0.23.3 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/0.23.3 )
5
+ [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=0.23.4 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/0.23.4 )
6
6
7
7
Library support for Kotlin coroutines in
8
8
[ Kotlin/JVM] ( core/README.md ) and
9
9
[ Kotlin/JS] ( js/README.md ) .
10
- This is a companion version for Kotlin 1.2.50 release.
10
+ This is a companion version for Kotlin 1.2.51 release.
11
11
12
12
``` kotlin
13
13
launch {
@@ -64,15 +64,15 @@ Add dependencies (you can also add other modules that you need):
64
64
<dependency >
65
65
<groupId >org.jetbrains.kotlinx</groupId >
66
66
<artifactId >kotlinx-coroutines-core</artifactId >
67
- <version >0.23.3 </version >
67
+ <version >0.23.4 </version >
68
68
</dependency >
69
69
```
70
70
71
71
And make sure that you use the latest Kotlin version:
72
72
73
73
``` xml
74
74
<properties >
75
- <kotlin .version>1.2.50 </kotlin .version>
75
+ <kotlin .version>1.2.51 </kotlin .version>
76
76
</properties >
77
77
```
78
78
@@ -81,14 +81,14 @@ And make sure that you use the latest Kotlin version:
81
81
Add dependencies (you can also add other modules that you need):
82
82
83
83
``` groovy
84
- compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.23.3 '
84
+ compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.23.4 '
85
85
```
86
86
87
87
And make sure that you use the latest Kotlin version:
88
88
89
89
``` groovy
90
90
buildscript {
91
- ext.kotlin_version = '1.2.50 '
91
+ ext.kotlin_version = '1.2.51 '
92
92
}
93
93
```
94
94
@@ -111,7 +111,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
111
111
module as dependency when using ` kotlinx.coroutines ` on Android:
112
112
113
113
``` groovy
114
- compile 'org.jetbrains.kotlinx:kotlinx-coroutines-android:0.23.3 '
114
+ compile 'org.jetbrains.kotlinx:kotlinx-coroutines-android:0.23.4 '
115
115
```
116
116
117
117
This gives you access to Android [ UI] ( https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-android/kotlinx.coroutines.experimental.android/-u-i.html )
0 commit comments