Skip to content

Commit 71334c3

Browse files
committed
Require Kotlin 1.1.4 or later
1 parent 537c359 commit 71334c3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# kotlinx.coroutines [ ![Download](https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg) ](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/_latestVersion)
22

3-
Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1 release.
3+
Library support for Kotlin coroutines. This is a companion version for Kotlin 1.1.4 release.
44

55
## Modules
66

@@ -34,7 +34,7 @@ Library support for Kotlin coroutines. This is a companion version for Kotlin 1.
3434
The libraries are published to [kotlinx](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines) bintray repository
3535
and also linked to [JCenter](https://bintray.com/bintray/jcenter?filterByPkgName=kotlinx.coroutines).
3636

37-
These libraries require kotlin compiler version `1.1.x` and
37+
These libraries require kotlin compiler version `1.1.4` or later and
3838
require kotlin runtime of the same version as a dependency.
3939

4040
### Maven
@@ -62,7 +62,7 @@ And make sure that you use the right Kotlin version:
6262

6363
```xml
6464
<properties>
65-
<kotlin.version>1.1.3-2</kotlin.version>
65+
<kotlin.version>1.1.4</kotlin.version>
6666
</properties>
6767
```
6868

@@ -86,6 +86,6 @@ And make sure that you use the right Kotlin version:
8686

8787
```groovy
8888
buildscript {
89-
ext.kotlin_version = '1.1.3-2'
89+
ext.kotlin_version = '1.1.4'
9090
}
9191
```

ui/kotlinx-coroutines-android/example-app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.1.3-2'
4+
ext.kotlin_version = '1.1.4'
55
repositories {
66
jcenter()
77
}

0 commit comments

Comments
 (0)