File tree 11 files changed +19
-11
lines changed
kotlinx-coroutines-javafx
kotlinx-coroutines-rx-example
11 files changed +19
-11
lines changed Original file line number Diff line number Diff line change 1
1
# Change log for kotlinx.coroutines
2
2
3
+ ## Version 0.11-rc
4
+
5
+ * ` select ` expression with onJoin/onAwait/onSend/onReceive clauses.
6
+ * ` Mutex ` is moved to ` kotlinx.coroutines.experimental.sync ` package.
7
+ * ` ClosedSendChannelException ` is a subclass of ` CancellationException ` now.
8
+ * New sections on "Shared mutable state and concurrency" and "Select expression"
9
+ in [ coroutines guide] ( coroutines-guide.md ) .
10
+
3
11
## Version 0.10-rc
4
12
5
13
* Switched to Kotlin version 1.1.0-rc-91.
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ Add dependencies (you can also add other modules that you need):
49
49
<dependency >
50
50
<groupId >org.jetbrains.kotlinx</groupId >
51
51
<artifactId >kotlinx-coroutines-core</artifactId >
52
- <version >0.10 -rc</version >
52
+ <version >0.11 -rc</version >
53
53
</dependency >
54
54
```
55
55
@@ -76,7 +76,7 @@ repositories {
76
76
Add dependencies (you can also add other modules that you need):
77
77
78
78
``` groovy
79
- compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.10 -rc'
79
+ compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.11 -rc'
80
80
```
81
81
82
82
And make sure that you use the right Kotlin version:
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.10 -rc-SNAPSHOT</version >
25
+ <version >0.11 -rc-SNAPSHOT</version >
26
26
</parent >
27
27
28
28
<artifactId >kotlinx-coroutines-core</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.10 -rc-SNAPSHOT</version >
25
+ <version >0.11 -rc-SNAPSHOT</version >
26
26
</parent >
27
27
28
28
<artifactId >kotlinx-coroutines-javafx</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.10 -rc-SNAPSHOT</version >
25
+ <version >0.11 -rc-SNAPSHOT</version >
26
26
</parent >
27
27
28
28
<artifactId >kotlinx-coroutines-jdk8</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.10 -rc-SNAPSHOT</version >
25
+ <version >0.11 -rc-SNAPSHOT</version >
26
26
</parent >
27
27
28
28
<artifactId >kotlinx-coroutines-nio</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.10 -rc-SNAPSHOT</version >
25
+ <version >0.11 -rc-SNAPSHOT</version >
26
26
</parent >
27
27
28
28
<artifactId >kotlinx-coroutines-rx-example</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.10 -rc-SNAPSHOT</version >
25
+ <version >0.11 -rc-SNAPSHOT</version >
26
26
</parent >
27
27
28
28
<artifactId >kotlinx-coroutines-rx</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.10 -rc-SNAPSHOT</version >
25
+ <version >0.11 -rc-SNAPSHOT</version >
26
26
</parent >
27
27
28
28
<artifactId >kotlinx-coroutines-swing</artifactId >
Original file line number Diff line number Diff line change 23
23
24
24
<groupId >org.jetbrains.kotlinx</groupId >
25
25
<artifactId >kotlinx-coroutines</artifactId >
26
- <version >0.10 -rc-SNAPSHOT</version >
26
+ <version >0.11 -rc-SNAPSHOT</version >
27
27
<packaging >pom</packaging >
28
28
29
29
<description >Coroutines support libraries for Kotlin 1.1</description >
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.10 -rc-SNAPSHOT</version >
25
+ <version >0.11 -rc-SNAPSHOT</version >
26
26
</parent >
27
27
28
28
<artifactId >kotlinx-coroutines-site</artifactId >
You can’t perform that action at this time.
0 commit comments