Skip to content

Commit 67222cb

Browse files
committed
Update readme and version numbers
1 parent 1bdbb3e commit 67222cb

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

README.md

Lines changed: 8 additions & 6 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.30.2) ](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/0.30.2)
66

77
Library support for Kotlin coroutines with [multiplatform](#multiplatform) support.
8-
This is a companion version for Kotlin 1.3.0-rc-116 release.
8+
This is a companion version for Kotlin 1.3.0-rc-146 release.
99

1010
**NOTE**: This is the latest experimental release. See [COMPATIBILITY.md](COMPATIBILITY.md) for details on migration.
1111

@@ -68,33 +68,35 @@ Add dependencies (you can also add other modules that you need):
6868
<dependency>
6969
<groupId>org.jetbrains.kotlinx</groupId>
7070
<artifactId>kotlinx-coroutines-core</artifactId>
71-
<version>0.30.2</version>
71+
<version>0.30.2-eap13</version>
7272
</dependency>
7373
```
7474

7575
And make sure that you use the latest Kotlin version:
7676

7777
```xml
7878
<properties>
79-
<kotlin.version>1.3.0-rc-116</kotlin.version>
79+
<kotlin.version>1.3.0-rc-146</kotlin.version>
8080
</properties>
8181
```
8282

83+
While Kotlin 1.3 is still in release candidate status, in order to depend on it you should add eap repository: `https://dl.bintray.com/kotlin/kotlin-eap`.
84+
8385
### Gradle
8486

8587
Add dependencies (you can also add other modules that you need):
8688

8789
```groovy
8890
dependencies {
89-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.30.2'
91+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.30.2-eap13'
9092
}
9193
```
9294

9395
And make sure that you use the latest Kotlin version:
9496

9597
```groovy
9698
buildscript {
97-
ext.kotlin_version = '1.3.0-rc-116'
99+
ext.kotlin_version = '1.3.0-rc-146'
98100
}
99101
```
100102

@@ -120,7 +122,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
120122
module as dependency when using `kotlinx.coroutines` on Android:
121123

122124
```groovy
123-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:0.30.2'
125+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:0.30.2-eap13'
124126
```
125127
This gives you access to Android [Dispatchers.Main](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-android/kotlinx.coroutines.android/kotlinx.coroutines.-dispatchers/index.html)
126128
coroutine dispatcher and also makes sure that in case of crashed coroutine with unhandled exception this

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Kotlin
2-
version=0.30.3-eap13
2+
version=0.30.2-eap13-SNAPSHOT
33
group=org.jetbrains.kotlinx
44
kotlin_version=1.3.0-rc-146
55
kotlin_native_version=1.3.0-rc-146

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.3.0-rc-116
21+
kotlin_version=1.3.0-rc-146
2222
coroutines_version=0.30.2
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.3.0-rc-116
21+
kotlin_version=1.3.0-rc-146
2222
coroutines_version=0.30.2
2323

0 commit comments

Comments
 (0)