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 11# Change log for kotlinx.coroutines
22
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+
39## Version 0.19.2
410
511* Fixed ` ArrayBroadcastChannel ` receive of stale elements on ` openSubscription ` .
Original file line number Diff line number Diff line change 22
33[ ![ official JetBrains project] ( http://jb.gg/badges/official.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
44[ ![ 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 )
66
77Library support for Kotlin coroutines.
88This 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):
5151<dependency >
5252 <groupId >org.jetbrains.kotlinx</groupId >
5353 <artifactId >kotlinx-coroutines-core</artifactId >
54- <version >0.19.2 </version >
54+ <version >0.19.3 </version >
5555</dependency >
5656```
5757
@@ -68,7 +68,7 @@ And make sure that you use the latest Kotlin version:
6868Add dependencies (you can also add other modules that you need):
6969
7070``` groovy
71- compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.19.2 '
71+ compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.19.3 '
7272```
7373
7474And 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
22
33kotlin_version = 1.1.51
44junit_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 { .
173173` app/build.gradle ` file:
174174
175175``` groovy
176- compile "org.jetbrains.kotlinx:kotlinx-coroutines-android:0.19.2 "
176+ compile "org.jetbrains.kotlinx:kotlinx-coroutines-android:0.19.3 "
177177```
178178
179179Coroutines are experimental feature in Kotlin.
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ dependencies {
3636 compile ' com.android.support:design:25.2.0'
3737 testCompile ' junit:junit:4.12'
3838 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 "
4040}
4141
4242kotlin {
You can’t perform that action at this time.
0 commit comments