Skip to content

Commit 4d84a78

Browse files
committed
Kotlin 1.2.0
1 parent e8f694e commit 4d84a78

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Download](https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=0.19.3) ](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/0.19.3)
66

77
Library support for Kotlin coroutines.
8-
This is a companion version for Kotlin 1.1.4 release (this is the minimal required Kotlin runtime version).
8+
This is a companion version for Kotlin 1.2.0 release.
99

1010
## Modules
1111

@@ -59,7 +59,7 @@ And make sure that you use the latest Kotlin version:
5959

6060
```xml
6161
<properties>
62-
<kotlin.version>1.1.51</kotlin.version>
62+
<kotlin.version>1.2.0</kotlin.version>
6363
</properties>
6464
```
6565

@@ -75,7 +75,7 @@ And make sure that you use the latest Kotlin version:
7575

7676
```groovy
7777
buildscript {
78-
ext.kotlin_version = '1.1.51'
78+
ext.kotlin_version = '1.2.0'
7979
}
8080
```
8181

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ buildscript {
1313
}
1414
repositories {
1515
jcenter()
16+
maven { url "http://kotlin.bintray.com/kotlinx" }
1617
}
1718
dependencies {
1819
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -70,7 +71,6 @@ configure(subprojects.findAll { !sourceless.contains(it.name) }) {
7071

7172
repositories {
7273
jcenter()
73-
maven { url "http://jcenter.bintray.com" }
7474
maven { url "http://kotlin.bintray.com/kotlinx" }
7575
maven { url "https://dl.bintray.com/devexperts/Maven/" }
7676
}

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version = 0.19.3-SNAPSHOT
22

3-
kotlin_version = 1.1.51
3+
kotlin_version = 1.2.0
44
junit_version = 4.12
5-
atomicFU_version = 0.9
5+
atomicFU_version = 0.9.1
66
lincheck_version=1.9
77
dokka_version = 0.9.15
88

ui/kotlinx-coroutines-android/animation-app/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ org.gradle.jvmargs=-Xmx1536m
1818

1919
kotlin.coroutines=enable
2020

21-
kotlin_version = 1.1.51
21+
kotlin_version = 1.2.0
2222
coroutines_version = 0.19.3
2323

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ org.gradle.jvmargs=-Xmx1536m
1818

1919
kotlin.coroutines=enable
2020

21-
kotlin_version = 1.1.51
21+
kotlin_version = 1.2.0
2222
coroutines_version = 0.19.3
2323

0 commit comments

Comments
 (0)