Skip to content

Commit

Permalink
Version 0.11-rc
Browse files Browse the repository at this point in the history
  • Loading branch information
elizarov committed Feb 22, 2017
1 parent 40e89f6 commit 8c86afb
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 11 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change log for kotlinx.coroutines

## Version 0.11-rc

* `select` expression with onJoin/onAwait/onSend/onReceive clauses.
* `Mutex` is moved to `kotlinx.coroutines.experimental.sync` package.
* `ClosedSendChannelException` is a subclass of `CancellationException` now.
* New sections on "Shared mutable state and concurrency" and "Select expression"
in [coroutines guide](coroutines-guide.md).

## Version 0.10-rc

* Switched to Kotlin version 1.1.0-rc-91.
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.10-rc</version>
<version>0.11-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.10-rc'
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.11-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.10-rc-SNAPSHOT</version>
<version>0.11-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.10-rc-SNAPSHOT</version>
<version>0.11-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.10-rc-SNAPSHOT</version>
<version>0.11-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.10-rc-SNAPSHOT</version>
<version>0.11-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.10-rc-SNAPSHOT</version>
<version>0.11-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.10-rc-SNAPSHOT</version>
<version>0.11-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.10-rc-SNAPSHOT</version>
<version>0.11-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.10-rc-SNAPSHOT</version>
<version>0.11-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.10-rc-SNAPSHOT</version>
<version>0.11-rc-SNAPSHOT</version>
</parent>

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

0 comments on commit 8c86afb

Please sign in to comment.