File tree 11 files changed +16
-14
lines changed
kotlinx-coroutines-javafx
kotlinx-coroutines-rx-example
11 files changed +16
-14
lines changed Original file line number Diff line number Diff line change 1
1
# Change log for kotlinx.coroutines
2
2
3
- ## Version 0.9 -rc
3
+ ## Version 0.10 -rc
4
4
5
- * Switched to Kotlin version 1.1.0-rc-69 .
5
+ * Switched to Kotlin version 1.1.0-rc-91 .
6
6
* ` Mutex ` synchronization primitive is introduced.
7
7
* ` buildChannel ` is renamed to ` produce ` , old name is deprecated.
8
+ * ` Job.onCompletion ` is renamed to ` Job.invokeOnCompletion ` , old name is deprecated.
8
9
* ` delay ` implementation in Swing, JavaFx, and scheduled executors is fixed to avoid an extra dispatch.
9
10
* ` CancellableContinuation.resumeUndispatched ` is introduced to make this efficient implementation possible.
11
+ * Remove unnecessary creation of ` CancellationException ` to improve performance, plus other performance improvements.
10
12
* Suppress deprecated and internal APIs from docs.
11
- * Remove unnecessary creation of ` CancellationException ` to improve performance .
13
+ * Better docs at top level with categorized summary of classes and functions .
12
14
13
15
## Version 0.8-beta
14
16
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.9 -rc</version >
52
+ <version >0.10 -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.9 -rc'
79
+ compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.10 -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.9 -rc-SNAPSHOT</version >
25
+ <version >0.10 -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.9 -rc-SNAPSHOT</version >
25
+ <version >0.10 -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.9 -rc-SNAPSHOT</version >
25
+ <version >0.10 -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.9 -rc-SNAPSHOT</version >
25
+ <version >0.10 -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.9 -rc-SNAPSHOT</version >
25
+ <version >0.10 -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.9 -rc-SNAPSHOT</version >
25
+ <version >0.10 -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.9 -rc-SNAPSHOT</version >
25
+ <version >0.10 -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.9 -rc-SNAPSHOT</version >
26
+ <version >0.10 -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.9 -rc-SNAPSHOT</version >
25
+ <version >0.10 -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