File tree Expand file tree Collapse file tree 22 files changed +33
-23
lines changed
kotlinx-coroutines-quasar
kotlinx-coroutines-reactive
kotlinx-coroutines-reactor
kotlinx-coroutines-rx-example
kotlinx-coroutines-android
kotlinx-coroutines-javafx Expand file tree Collapse file tree 22 files changed +33
-23
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.1
4
+
5
+ * Failed parent Job cancels all children jobs, then waits for them them.
6
+ This makes parent-child hierarchies easier to get working right without
7
+ having to use ` try/catch ` or other exception handlers.
8
+ * Fixed a race in ` ArrayBroadcastChannel ` between ` send ` and ` openChannel ` invocations
9
+ (see #138 ).
10
+ * Updated Reactor support to leverage Bismuth release train
11
+ (contributed by @sdeleuze , see PR #141 )
12
+
3
13
## Version 0.19
4
14
5
15
* This release is published to Maven Central.
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 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/0.19 )
5
+ [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=0.19.1 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/0.19.1 )
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</version >
54
+ <version >0.19.1 </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'
71
+ compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.19.1 '
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 24
24
<parent >
25
25
<groupId >org.jetbrains.kotlinx</groupId >
26
26
<artifactId >kotlinx-coroutines</artifactId >
27
- <version >0.19-SNAPSHOT</version >
27
+ <version >0.19.1 -SNAPSHOT</version >
28
28
</parent >
29
29
30
30
<artifactId >benchmarks</artifactId >
Original file line number Diff line number Diff line change 22
22
<parent >
23
23
<groupId >org.jetbrains.kotlinx</groupId >
24
24
<artifactId >kotlinx-coroutines</artifactId >
25
- <version >0.19-SNAPSHOT</version >
25
+ <version >0.19.1 -SNAPSHOT</version >
26
26
<relativePath >../../pom.xml</relativePath >
27
27
</parent >
28
28
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >kotlinx-coroutines</artifactId >
7
7
<groupId >org.jetbrains.kotlinx</groupId >
8
- <version >0.19-SNAPSHOT</version >
8
+ <version >0.19.1 -SNAPSHOT</version >
9
9
<relativePath >../../pom.xml</relativePath >
10
10
</parent >
11
11
<modelVersion >4.0.0</modelVersion >
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<groupId >org.jetbrains.kotlinx</groupId >
23
23
<artifactId >kotlinx-coroutines</artifactId >
24
- <version >0.19-SNAPSHOT</version >
24
+ <version >0.19.1 -SNAPSHOT</version >
25
25
<relativePath >../../pom.xml</relativePath >
26
26
</parent >
27
27
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<groupId >org.jetbrains.kotlinx</groupId >
23
23
<artifactId >kotlinx-coroutines</artifactId >
24
- <version >0.19-SNAPSHOT</version >
24
+ <version >0.19.1 -SNAPSHOT</version >
25
25
<relativePath >../../pom.xml</relativePath >
26
26
</parent >
27
27
Original file line number Diff line number Diff line change 22
22
<parent >
23
23
<groupId >org.jetbrains.kotlinx</groupId >
24
24
<artifactId >kotlinx-coroutines</artifactId >
25
- <version >0.19-SNAPSHOT</version >
25
+ <version >0.19.1 -SNAPSHOT</version >
26
26
<relativePath >../../pom.xml</relativePath >
27
27
</parent >
28
28
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<groupId >org.jetbrains.kotlinx</groupId >
23
23
<artifactId >kotlinx-coroutines</artifactId >
24
- <version >0.19-SNAPSHOT</version >
24
+ <version >0.19.1 -SNAPSHOT</version >
25
25
<relativePath >../../pom.xml</relativePath >
26
26
</parent >
27
27
Original file line number Diff line number Diff line change 21
21
<parent >
22
22
<groupId >org.jetbrains.kotlinx</groupId >
23
23
<artifactId >kotlinx-coroutines</artifactId >
24
- <version >0.19-SNAPSHOT</version >
24
+ <version >0.19.1 -SNAPSHOT</version >
25
25
</parent >
26
26
27
27
<artifactId >knit</artifactId >
You can’t perform that action at this time.
0 commit comments