1
- # kotlinx.coroutines
1
+ # kotlinx.coroutines [ ![ Download ] ( https://api.bintray.com/packages/kotlin/kotlin-eap-1.1/kotlinx.coroutines/images/download.svg ) ] ( https://bintray.com/kotlin/kotlin-eap-1.1/kotlinx.coroutines/_latestVersion )
2
2
3
- [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlin-eap-1.1/kotlinx.coroutines/images/download.svg ) ] ( https://bintray.com/kotlin/kotlin-eap-1.1/kotlinx.coroutines/_latestVersion )
4
-
5
- Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1.0-rc-91 release.
3
+ Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1.0 release.
6
4
7
5
## Modules and features
8
6
@@ -28,8 +26,8 @@ Library support for Kotlin coroutines. This is a companion version for Kotlin 1.
28
26
29
27
The libraries are published to [ kotlin-eap-1.1] ( https://bintray.com/kotlin/kotlin-eap-1.1/kotlinx.coroutines ) bintray repository.
30
28
31
- These libraries require kotlin compiler version to be at least ` 1.1.0-rc-91 ` and
32
- require kotlin runtime of the same version as a dependency, which can be obtained from the same repository .
29
+ These libraries require kotlin compiler version to be at least ` 1.1.0 ` and
30
+ require kotlin runtime of the same version as a dependency.
33
31
34
32
### Maven
35
33
@@ -53,15 +51,15 @@ Add dependencies (you can also add other modules that you need):
53
51
<dependency >
54
52
<groupId >org.jetbrains.kotlinx</groupId >
55
53
<artifactId >kotlinx-coroutines-core</artifactId >
56
- <version >0.11-rc </version >
54
+ <version >0.12 </version >
57
55
</dependency >
58
56
```
59
57
60
58
And make sure that you use the right Kotlin version:
61
59
62
60
``` xml
63
61
<properties >
64
- <kotlin .version>1.1.0-rc-91 </kotlin .version>
62
+ <kotlin .version>1.1.0</kotlin .version>
65
63
</properties >
66
64
```
67
65
@@ -80,13 +78,13 @@ repositories {
80
78
Add dependencies (you can also add other modules that you need):
81
79
82
80
``` groovy
83
- compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.11-rc '
81
+ compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.12 '
84
82
```
85
83
86
84
And make sure that you use the right Kotlin version:
87
85
88
86
``` groovy
89
87
buildscript {
90
- ext.kotlin_version = '1.1.0-rc-91 '
88
+ ext.kotlin_version = '1.1.0'
91
89
}
92
90
```
0 commit comments