File tree Expand file tree Collapse file tree 11 files changed +16
-14
lines changed
kotlinx-coroutines-javafx
kotlinx-coroutines-rx-example Expand file tree Collapse file tree 11 files changed +16
-14
lines changed Original file line number Diff line number Diff line change 11# Change log for kotlinx.coroutines
22
3- ## Version 0.9 -rc
3+ ## Version 0.10 -rc
44
5- * Switched to Kotlin version 1.1.0-rc-69 .
5+ * Switched to Kotlin version 1.1.0-rc-91 .
66* ` Mutex ` synchronization primitive is introduced.
77* ` buildChannel ` is renamed to ` produce ` , old name is deprecated.
8+ * ` Job.onCompletion ` is renamed to ` Job.invokeOnCompletion ` , old name is deprecated.
89* ` delay ` implementation in Swing, JavaFx, and scheduled executors is fixed to avoid an extra dispatch.
910* ` CancellableContinuation.resumeUndispatched ` is introduced to make this efficient implementation possible.
11+ * Remove unnecessary creation of ` CancellationException ` to improve performance, plus other performance improvements.
1012* 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 .
1214
1315## Version 0.8-beta
1416
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):
4949<dependency >
5050 <groupId >org.jetbrains.kotlinx</groupId >
5151 <artifactId >kotlinx-coroutines-core</artifactId >
52- <version >0.9 -rc</version >
52+ <version >0.10 -rc</version >
5353</dependency >
5454```
5555
@@ -76,7 +76,7 @@ repositories {
7676Add dependencies (you can also add other modules that you need):
7777
7878``` groovy
79- compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.9 -rc'
79+ compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.10 -rc'
8080```
8181
8282And make sure that you use the right Kotlin version:
Original file line number Diff line number Diff line change 2222 <parent >
2323 <groupId >org.jetbrains.kotlinx</groupId >
2424 <artifactId >kotlinx-coroutines</artifactId >
25- <version >0.9 -rc-SNAPSHOT</version >
25+ <version >0.10 -rc-SNAPSHOT</version >
2626 </parent >
2727
2828 <artifactId >kotlinx-coroutines-core</artifactId >
Original file line number Diff line number Diff line change 2222 <parent >
2323 <groupId >org.jetbrains.kotlinx</groupId >
2424 <artifactId >kotlinx-coroutines</artifactId >
25- <version >0.9 -rc-SNAPSHOT</version >
25+ <version >0.10 -rc-SNAPSHOT</version >
2626 </parent >
2727
2828 <artifactId >kotlinx-coroutines-javafx</artifactId >
Original file line number Diff line number Diff line change 2222 <parent >
2323 <groupId >org.jetbrains.kotlinx</groupId >
2424 <artifactId >kotlinx-coroutines</artifactId >
25- <version >0.9 -rc-SNAPSHOT</version >
25+ <version >0.10 -rc-SNAPSHOT</version >
2626 </parent >
2727
2828 <artifactId >kotlinx-coroutines-jdk8</artifactId >
Original file line number Diff line number Diff line change 2222 <parent >
2323 <groupId >org.jetbrains.kotlinx</groupId >
2424 <artifactId >kotlinx-coroutines</artifactId >
25- <version >0.9 -rc-SNAPSHOT</version >
25+ <version >0.10 -rc-SNAPSHOT</version >
2626 </parent >
2727
2828 <artifactId >kotlinx-coroutines-nio</artifactId >
Original file line number Diff line number Diff line change 2222 <parent >
2323 <groupId >org.jetbrains.kotlinx</groupId >
2424 <artifactId >kotlinx-coroutines</artifactId >
25- <version >0.9 -rc-SNAPSHOT</version >
25+ <version >0.10 -rc-SNAPSHOT</version >
2626 </parent >
2727
2828 <artifactId >kotlinx-coroutines-rx-example</artifactId >
Original file line number Diff line number Diff line change 2222 <parent >
2323 <groupId >org.jetbrains.kotlinx</groupId >
2424 <artifactId >kotlinx-coroutines</artifactId >
25- <version >0.9 -rc-SNAPSHOT</version >
25+ <version >0.10 -rc-SNAPSHOT</version >
2626 </parent >
2727
2828 <artifactId >kotlinx-coroutines-rx</artifactId >
Original file line number Diff line number Diff line change 2222 <parent >
2323 <groupId >org.jetbrains.kotlinx</groupId >
2424 <artifactId >kotlinx-coroutines</artifactId >
25- <version >0.9 -rc-SNAPSHOT</version >
25+ <version >0.10 -rc-SNAPSHOT</version >
2626 </parent >
2727
2828 <artifactId >kotlinx-coroutines-swing</artifactId >
Original file line number Diff line number Diff line change 2323
2424 <groupId >org.jetbrains.kotlinx</groupId >
2525 <artifactId >kotlinx-coroutines</artifactId >
26- <version >0.9 -rc-SNAPSHOT</version >
26+ <version >0.10 -rc-SNAPSHOT</version >
2727 <packaging >pom</packaging >
2828
2929 <description >Coroutines support libraries for Kotlin 1.1</description >
You can’t perform that action at this time.
0 commit comments