1
1
# kotlinx.coroutines
2
2
3
- Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1.0-beta-38 release.
3
+ Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1.0-rc-69 release.
4
4
5
5
## Modules and features
6
6
7
7
* [ kotlinx-coroutines-core] ( kotlinx-coroutines-core ) module with core primitives to work with coroutines.
8
- Its functionality is covered by the [ guide to kotlinx.coroutines] ( coroutines-guide.md ) .
8
+ * This module's functionality is covered by the [ guide to kotlinx.coroutines] ( coroutines-guide.md ) .
9
9
* [ kotlinx-coroutines-jdk8] ( kotlinx-coroutines-jdk8 ) module with additional libraries for JDK8 (or Android API level 24).
10
10
* [ kotlinx-coroutines-nio] ( kotlinx-coroutines-nio ) module with extensions for asynchronous IO on JDK7+.
11
11
* [ kotlinx-coroutines-swing] ( kotlinx-coroutines-swing ) module with ` Swing ` context for Swing UI applications.
@@ -24,7 +24,7 @@ Library support for Kotlin coroutines. This is a companion version for Kotlin 1.
24
24
25
25
The libraries are published to [ kotlin-eap-1.1] ( https://bintray.com/kotlin/kotlin-eap-1.1/kotlinx.coroutines ) bintray repository.
26
26
27
- These libraries require kotlin compiler version to be at least ` 1.1.0-beta-38 ` and
27
+ These libraries require kotlin compiler version to be at least ` 1.1.0-rc-69 ` and
28
28
require kotlin runtime of the same version as a dependency, which can be obtained from the same repository.
29
29
30
30
### Maven
@@ -49,15 +49,15 @@ Add dependencies (you can also add other modules that you need):
49
49
<dependency >
50
50
<groupId >org.jetbrains.kotlinx</groupId >
51
51
<artifactId >kotlinx-coroutines-core</artifactId >
52
- <version >0.8-beta </version >
52
+ <version >0.9-rc </version >
53
53
</dependency >
54
54
```
55
55
56
56
And make sure that you use the right Kotlin version:
57
57
58
58
``` xml
59
59
<properties >
60
- <kotlin .version>1.1.0-beta-38 </kotlin .version>
60
+ <kotlin .version>1.1.0-rc-69 </kotlin .version>
61
61
</properties >
62
62
```
63
63
@@ -76,13 +76,13 @@ repositories {
76
76
Add dependencies (you can also add other modules that you need):
77
77
78
78
``` groovy
79
- compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.8-beta '
79
+ compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.9-rc '
80
80
```
81
81
82
82
And make sure that you use the right Kotlin version:
83
83
84
84
``` groovy
85
85
buildscript {
86
- ext.kotlin_version = '1.1.0-beta-38 '
86
+ ext.kotlin_version = '1.1.0-rc-69 '
87
87
}
88
88
```
0 commit comments