You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: COMPATIBILITY.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,6 @@ In order to migrate `kotlinx.coroutines` to `1.0.0`, follow these steps:
20
20
21
21
1. Update `kotlinx.coroutines` to `0.30.2` version.
22
22
2. Inspect compiler warnings about deprecated API and migrate it to a proposed alternative. Most of deprecated API has a corresponding replacement which can be applied from IDEA with quickfix.
23
-
3. Update Kotlin version to `1.3.0`or to the latest `1.3.0-rc`and `kotlinx.coroutines` to version `0.30.2-eap13`. Then just get rid of `experimental` suffix in all imports.
23
+
3. Update Kotlin version to `1.3.0` and `kotlinx.coroutines` to version `0.30.2-eap13`. Then just get rid of `experimental` suffix in all imports.
24
24
4. Update `kotlinx.coroutines` to version `1.0.0` or to the corresponding release candidate of it).
Library support for Kotlin coroutines with [multiplatform](#multiplatform) support.
8
-
This is a companion version for Kotlin `1.3.0-rc-146` release.
8
+
This is a companion version for Kotlin `1.3.0` release.
9
9
10
10
**NOTE**: `0.30.2` was the last release with Kotlin 1.2 and experimental coroutines.
11
11
See [COMPATIBILITY.md](COMPATIBILITY.md) for details of migration onto the stable Kotlin 1.3 coroutines.
@@ -69,35 +69,33 @@ Add dependencies (you can also add other modules that you need):
69
69
<dependency>
70
70
<groupId>org.jetbrains.kotlinx</groupId>
71
71
<artifactId>kotlinx-coroutines-core</artifactId>
72
-
<version>1.0.0-RC1</version>
72
+
<version>1.0.0</version>
73
73
</dependency>
74
74
```
75
75
76
76
And make sure that you use the latest Kotlin version:
77
77
78
78
```xml
79
79
<properties>
80
-
<kotlin.version>1.3.0-rc-146</kotlin.version>
80
+
<kotlin.version>1.3.0</kotlin.version>
81
81
</properties>
82
82
```
83
83
84
-
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`.
85
-
86
84
### Gradle
87
85
88
86
Add dependencies (you can also add other modules that you need):
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)
157
147
coroutine dispatcher and also makes sure that in case of crashed coroutine with unhandled exception this
0 commit comments