1
1
# kotlinx.coroutines
2
2
3
- Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1.0-rc release.
3
+ Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1.0-beta-37 release.
4
4
5
5
## Modules and features
6
6
@@ -48,7 +48,7 @@ from inside coroutines. It is in very basic form now (example-only, not even clo
48
48
49
49
The libraries are published to [ kotlin-eap-1.1] ( https://bintray.com/kotlin/kotlin-eap-1.1/kotlinx.coroutines ) bintray repository.
50
50
51
- These libraries require kotlin compiler version to be at least ` 1.1.0-rc ` and
51
+ These libraries require kotlin compiler version to be at least ` 1.1.0-beta-37 ` and
52
52
require kotlin runtime of the same version as a dependency, which can be obtained from the same repository.
53
53
54
54
### Maven
@@ -73,15 +73,15 @@ Add dependencies (you can also add other modules that you need):
73
73
<dependency >
74
74
<groupId >org.jetbrains.kotlinx</groupId >
75
75
<artifactId >kotlinx-coroutines-core</artifactId >
76
- <version >0.6-rc </version >
76
+ <version >0.6-beta </version >
77
77
</dependency >
78
78
```
79
79
80
80
And make sure that you use the right Kotlin version:
81
81
82
82
``` xml
83
83
<properties >
84
- <kotlin .version>1.1.0-rc </kotlin .version>
84
+ <kotlin .version>1.1.0-beta-37 </kotlin .version>
85
85
</properties >
86
86
```
87
87
@@ -100,13 +100,13 @@ repositories {
100
100
Add dependencies (you can also add other modules that you need):
101
101
102
102
``` groovy
103
- compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.6-rc '
103
+ compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.6-beta '
104
104
```
105
105
106
106
And make sure that you use the right Kotlin version:
107
107
108
108
``` groovy
109
109
buildscript {
110
- ext.kotlin_version = '1.1.0-rc '
110
+ ext.kotlin_version = '1.1.0-beta-37 '
111
111
}
112
112
```
0 commit comments