Skip to content

Commit 5f2e94b

Browse files
committed
Version 0.23.3
1 parent 606a9cb commit 5f2e94b

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

CHANGES.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change log for kotlinx.coroutines
22

3+
## Version 0.23.3
4+
5+
* Kotlin 1.2.50.
6+
* JS: Moved to atomicfu version 0.10.3 that properly matches NPM & Kotlin/JS module names (see #396).
7+
* Improve source-code compatibility with previous (0.22.x) version of `openChannel().use { ... }` pattern by providing deprecated extension function `use` on `ReceiveChannel`.
8+
39
## Version 0.23.2
410

511
* IO: fix joining and continuous writing byte array interference.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![official JetBrains project](http://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
44
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
5-
[![Download](https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=0.23.2) ](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/0.23.2)
5+
[![Download](https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=0.23.3) ](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/0.23.3)
66

77
Library support for Kotlin coroutines in
88
[Kotlin/JVM](core/README.md) and
@@ -64,7 +64,7 @@ Add dependencies (you can also add other modules that you need):
6464
<dependency>
6565
<groupId>org.jetbrains.kotlinx</groupId>
6666
<artifactId>kotlinx-coroutines-core</artifactId>
67-
<version>0.23.2</version>
67+
<version>0.23.3</version>
6868
</dependency>
6969
```
7070

@@ -81,7 +81,7 @@ And make sure that you use the latest Kotlin version:
8181
Add dependencies (you can also add other modules that you need):
8282

8383
```groovy
84-
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.23.2'
84+
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.23.3'
8585
```
8686

8787
And make sure that you use the latest Kotlin version:

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 0.23.2-SNAPSHOT
1+
version = 0.23.3-SNAPSHOT
22
group = org.jetbrains.kotlinx
33

44
kotlin_version = 1.2.50

ui/coroutines-guide-ui.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Add dependencies on `kotlinx-coroutines-android` module to the `dependencies { .
173173
`app/build.gradle` file:
174174

175175
```groovy
176-
compile "org.jetbrains.kotlinx:kotlinx-coroutines-android:0.23.2"
176+
compile "org.jetbrains.kotlinx:kotlinx-coroutines-android:0.23.3"
177177
```
178178

179179
Coroutines are experimental feature in Kotlin.

ui/kotlinx-coroutines-android/animation-app/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ org.gradle.jvmargs=-Xmx1536m
1919
kotlin.coroutines=enable
2020

2121
kotlin_version = 1.2.50
22-
coroutines_version = 0.23.2
22+
coroutines_version = 0.23.3
2323

ui/kotlinx-coroutines-android/example-app/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ org.gradle.jvmargs=-Xmx1536m
1919
kotlin.coroutines=enable
2020

2121
kotlin_version = 1.2.50
22-
coroutines_version = 0.23.2
22+
coroutines_version = 0.23.3
2323

0 commit comments

Comments
 (0)