Skip to content

Commit 7ba3ed5

Browse files
committed
Compile with Kotlin 1.1.51
1 parent dca2a13 commit 7ba3ed5

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ The libraries are published to [kotlinx](https://bintray.com/kotlin/kotlinx/kotl
4343
linked to [JCenter](https://bintray.com/bintray/jcenter?filterByPkgName=kotlinx.coroutines) and
4444
pushed to [Maven Central](https://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.jetbrains.kotlinx%20a%3Akotlinx-coroutines).
4545

46-
These libraries require kotlin compiler version `1.1.4` or later and
47-
require kotlin runtime of the same version as a dependency.
48-
4946
### Maven
5047

5148
Add dependencies (you can also add other modules that you need):
@@ -58,11 +55,11 @@ Add dependencies (you can also add other modules that you need):
5855
</dependency>
5956
```
6057

61-
And make sure that you use the right Kotlin version:
58+
And make sure that you use the latest Kotlin version:
6259

6360
```xml
6461
<properties>
65-
<kotlin.version>1.1.4</kotlin.version>
62+
<kotlin.version>1.1.51</kotlin.version>
6663
</properties>
6764
```
6865

@@ -74,11 +71,11 @@ Add dependencies (you can also add other modules that you need):
7471
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.18'
7572
```
7673

77-
And make sure that you use the right Kotlin version:
74+
And make sure that you use the latest Kotlin version:
7875

7976
```groovy
8077
buildscript {
81-
ext.kotlin_version = '1.1.4'
78+
ext.kotlin_version = '1.1.51'
8279
}
8380
```
8481

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
<properties>
4343
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44-
<kotlin.version>1.1.4</kotlin.version>
44+
<kotlin.version>1.1.51</kotlin.version>
4545
<dokka.version>0.9.15</dokka.version>
4646
<junit.version>4.12</junit.version>
4747
<atomicfu.version>0.7</atomicfu.version>

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.4'
4+
ext.kotlin_version = '1.1.51'
55
repositories {
66
jcenter()
77
}

0 commit comments

Comments
 (0)