Skip to content

Commit

Permalink
Version 0.10-rc
Browse files Browse the repository at this point in the history
  • Loading branch information
elizarov committed Feb 17, 2017
1 parent 32b3fb3 commit f3042ac
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 14 deletions.
8 changes: 5 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
# Change log for kotlinx.coroutines

## Version 0.9-rc
## Version 0.10-rc

* Switched to Kotlin version 1.1.0-rc-69.
* Switched to Kotlin version 1.1.0-rc-91.
* `Mutex` synchronization primitive is introduced.
* `buildChannel` is renamed to `produce`, old name is deprecated.
* `Job.onCompletion` is renamed to `Job.invokeOnCompletion`, old name is deprecated.
* `delay` implementation in Swing, JavaFx, and scheduled executors is fixed to avoid an extra dispatch.
* `CancellableContinuation.resumeUndispatched` is introduced to make this efficient implementation possible.
* Remove unnecessary creation of `CancellationException` to improve performance, plus other performance improvements.
* Suppress deprecated and internal APIs from docs.
* Remove unnecessary creation of `CancellationException` to improve performance.
* Better docs at top level with categorized summary of classes and functions.

## Version 0.8-beta

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Add dependencies (you can also add other modules that you need):
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-core</artifactId>
<version>0.9-rc</version>
<version>0.10-rc</version>
</dependency>
```

Expand All @@ -76,7 +76,7 @@ repositories {
Add dependencies (you can also add other modules that you need):

```groovy
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.9-rc'
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.10-rc'
```

And make sure that you use the right Kotlin version:
Expand Down
2 changes: 1 addition & 1 deletion kotlinx-coroutines-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines</artifactId>
<version>0.9-rc-SNAPSHOT</version>
<version>0.10-rc-SNAPSHOT</version>
</parent>

<artifactId>kotlinx-coroutines-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion kotlinx-coroutines-javafx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines</artifactId>
<version>0.9-rc-SNAPSHOT</version>
<version>0.10-rc-SNAPSHOT</version>
</parent>

<artifactId>kotlinx-coroutines-javafx</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion kotlinx-coroutines-jdk8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines</artifactId>
<version>0.9-rc-SNAPSHOT</version>
<version>0.10-rc-SNAPSHOT</version>
</parent>

<artifactId>kotlinx-coroutines-jdk8</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion kotlinx-coroutines-nio/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines</artifactId>
<version>0.9-rc-SNAPSHOT</version>
<version>0.10-rc-SNAPSHOT</version>
</parent>

<artifactId>kotlinx-coroutines-nio</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion kotlinx-coroutines-rx-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines</artifactId>
<version>0.9-rc-SNAPSHOT</version>
<version>0.10-rc-SNAPSHOT</version>
</parent>

<artifactId>kotlinx-coroutines-rx-example</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion kotlinx-coroutines-rx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines</artifactId>
<version>0.9-rc-SNAPSHOT</version>
<version>0.10-rc-SNAPSHOT</version>
</parent>

<artifactId>kotlinx-coroutines-rx</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion kotlinx-coroutines-swing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines</artifactId>
<version>0.9-rc-SNAPSHOT</version>
<version>0.10-rc-SNAPSHOT</version>
</parent>

<artifactId>kotlinx-coroutines-swing</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines</artifactId>
<version>0.9-rc-SNAPSHOT</version>
<version>0.10-rc-SNAPSHOT</version>
<packaging>pom</packaging>

<description>Coroutines support libraries for Kotlin 1.1</description>
Expand Down
2 changes: 1 addition & 1 deletion site/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines</artifactId>
<version>0.9-rc-SNAPSHOT</version>
<version>0.10-rc-SNAPSHOT</version>
</parent>

<artifactId>kotlinx-coroutines-site</artifactId>
Expand Down

0 comments on commit f3042ac

Please sign in to comment.