11# kotlinx.coroutines
22
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.
44
55## Modules and features
66
@@ -48,7 +48,7 @@ from inside coroutines. It is in very basic form now (example-only, not even clo
4848
4949The libraries are published to [ kotlin-eap-1.1] ( https://bintray.com/kotlin/kotlin-eap-1.1/kotlinx.coroutines ) bintray repository.
5050
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
5252require kotlin runtime of the same version as a dependency, which can be obtained from the same repository.
5353
5454### Maven
@@ -73,15 +73,15 @@ Add dependencies (you can also add other modules that you need):
7373<dependency >
7474 <groupId >org.jetbrains.kotlinx</groupId >
7575 <artifactId >kotlinx-coroutines-core</artifactId >
76- <version >0.6-rc </version >
76+ <version >0.6-beta </version >
7777</dependency >
7878```
7979
8080And make sure that you use the right Kotlin version:
8181
8282``` xml
8383<properties >
84- <kotlin .version>1.1.0-rc </kotlin .version>
84+ <kotlin .version>1.1.0-beta-37 </kotlin .version>
8585</properties >
8686```
8787
@@ -100,13 +100,13 @@ repositories {
100100Add dependencies (you can also add other modules that you need):
101101
102102``` groovy
103- compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.6-rc '
103+ compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.6-beta '
104104```
105105
106106And make sure that you use the right Kotlin version:
107107
108108``` groovy
109109buildscript {
110- ext.kotlin_version = '1.1.0-rc '
110+ ext.kotlin_version = '1.1.0-beta-37 '
111111}
112112```
0 commit comments