File tree Expand file tree Collapse file tree 6 files changed +12
-107
lines changed
integration/kotlinx-coroutines-quasar
kotlinx-coroutines-android/example-app/app Expand file tree Collapse file tree 6 files changed +12
-107
lines changed Original file line number Diff line number Diff line change 1
1
# Change log for kotlinx.coroutines
2
2
3
+ ## Version 0.19.3
4
+
5
+ * Fixed ` send ` /` openSubscription ` race in ` ArrayBroadcastChannel ` .
6
+ This race lead to stalled (hanged) ` send ` /` receive ` invocations.
7
+ * Project build has been migrated to Gradle.
8
+
3
9
## Version 0.19.2
4
10
5
11
* Fixed ` ArrayBroadcastChannel ` receive of stale elements on ` openSubscription ` .
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ official JetBrains project] ( http://jb.gg/badges/official.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
4
4
[ ![ GitHub license] ( https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat )] ( http://www.apache.org/licenses/LICENSE-2.0 )
5
- [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=0.19.2 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/0.19.2 )
5
+ [ ![ 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 )
6
6
7
7
Library support for Kotlin coroutines.
8
8
This is a companion version for Kotlin 1.1.4 release (this is the minimal required Kotlin runtime version).
@@ -51,7 +51,7 @@ Add dependencies (you can also add other modules that you need):
51
51
<dependency >
52
52
<groupId >org.jetbrains.kotlinx</groupId >
53
53
<artifactId >kotlinx-coroutines-core</artifactId >
54
- <version >0.19.2 </version >
54
+ <version >0.19.3 </version >
55
55
</dependency >
56
56
```
57
57
@@ -68,7 +68,7 @@ And make sure that you use the latest Kotlin version:
68
68
Add dependencies (you can also add other modules that you need):
69
69
70
70
``` groovy
71
- compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.19.2 '
71
+ compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.19.3 '
72
72
```
73
73
74
74
And make sure that you use the latest Kotlin version:
Original file line number Diff line number Diff line change 1
- version = 0.19.2 -SNAPSHOT
1
+ version = 0.19.3 -SNAPSHOT
2
2
3
3
kotlin_version = 1.1.51
4
4
junit_version = 4.12
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ Add dependencies on `kotlinx-coroutines-android` module to the `dependencies { .
173
173
` app/build.gradle ` file:
174
174
175
175
``` groovy
176
- compile "org.jetbrains.kotlinx:kotlinx-coroutines-android:0.19.2 "
176
+ compile "org.jetbrains.kotlinx:kotlinx-coroutines-android:0.19.3 "
177
177
```
178
178
179
179
Coroutines are experimental feature in Kotlin.
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ dependencies {
36
36
compile ' com.android.support:design:25.2.0'
37
37
testCompile ' junit:junit:4.12'
38
38
compile " org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version "
39
- compile " org.jetbrains.kotlinx:kotlinx-coroutines-android:0.19.2 "
39
+ compile " org.jetbrains.kotlinx:kotlinx-coroutines-android:0.19.3 "
40
40
}
41
41
42
42
kotlin {
You can’t perform that action at this time.
0 commit comments