Skip to content

Commit 0a28c5f

Browse files
committed
Version 0.19.1
1 parent 4391897 commit 0a28c5f

File tree

22 files changed

+33
-23
lines changed

22 files changed

+33
-23
lines changed

CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change log for kotlinx.coroutines
22

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+
313
## Version 0.19
414

515
* This release is published to Maven Central.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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) ](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)
66

77
Library support for Kotlin coroutines.
88
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):
5151
<dependency>
5252
<groupId>org.jetbrains.kotlinx</groupId>
5353
<artifactId>kotlinx-coroutines-core</artifactId>
54-
<version>0.19</version>
54+
<version>0.19.1</version>
5555
</dependency>
5656
```
5757

@@ -68,7 +68,7 @@ And make sure that you use the latest Kotlin version:
6868
Add dependencies (you can also add other modules that you need):
6969

7070
```groovy
71-
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.19'
71+
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.19.1'
7272
```
7373

7474
And make sure that you use the latest Kotlin version:

benchmarks/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.jetbrains.kotlinx</groupId>
2626
<artifactId>kotlinx-coroutines</artifactId>
27-
<version>0.19-SNAPSHOT</version>
27+
<version>0.19.1-SNAPSHOT</version>
2828
</parent>
2929

3030
<artifactId>benchmarks</artifactId>

core/kotlinx-coroutines-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.jetbrains.kotlinx</groupId>
2424
<artifactId>kotlinx-coroutines</artifactId>
25-
<version>0.19-SNAPSHOT</version>
25+
<version>0.19.1-SNAPSHOT</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

core/kotlinx-coroutines-io/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>kotlinx-coroutines</artifactId>
77
<groupId>org.jetbrains.kotlinx</groupId>
8-
<version>0.19-SNAPSHOT</version>
8+
<version>0.19.1-SNAPSHOT</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

integration/kotlinx-coroutines-guava/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.jetbrains.kotlinx</groupId>
2323
<artifactId>kotlinx-coroutines</artifactId>
24-
<version>0.19-SNAPSHOT</version>
24+
<version>0.19.1-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

integration/kotlinx-coroutines-jdk8/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.jetbrains.kotlinx</groupId>
2323
<artifactId>kotlinx-coroutines</artifactId>
24-
<version>0.19-SNAPSHOT</version>
24+
<version>0.19.1-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

integration/kotlinx-coroutines-nio/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.jetbrains.kotlinx</groupId>
2424
<artifactId>kotlinx-coroutines</artifactId>
25-
<version>0.19-SNAPSHOT</version>
25+
<version>0.19.1-SNAPSHOT</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

integration/kotlinx-coroutines-quasar/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.jetbrains.kotlinx</groupId>
2323
<artifactId>kotlinx-coroutines</artifactId>
24-
<version>0.19-SNAPSHOT</version>
24+
<version>0.19.1-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727

knit/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.jetbrains.kotlinx</groupId>
2323
<artifactId>kotlinx-coroutines</artifactId>
24-
<version>0.19-SNAPSHOT</version>
24+
<version>0.19.1-SNAPSHOT</version>
2525
</parent>
2626

2727
<artifactId>knit</artifactId>

0 commit comments

Comments
 (0)