Skip to content

Commit f4e14b9

Browse files
committed
Version 0.23.4
1 parent d43467d commit f4e14b9

File tree

6 files changed

+17
-13
lines changed

6 files changed

+17
-13
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change log for kotlinx.coroutines
22

3+
## Version 0.23.4
4+
5+
* Recompiled with Kotlin 1.2.51 to solve broken metadata problem (see [KT-24944](https://youtrack.jetbrains.com/issue/KT-24944)).
6+
37
## Version 0.23.3
48

59
* Kotlin 1.2.50.

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
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.3) ](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/0.23.3)
5+
[![Download](https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=0.23.4) ](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/0.23.4)
66

77
Library support for Kotlin coroutines in
88
[Kotlin/JVM](core/README.md) and
99
[Kotlin/JS](js/README.md).
10-
This is a companion version for Kotlin 1.2.50 release.
10+
This is a companion version for Kotlin 1.2.51 release.
1111

1212
```kotlin
1313
launch {
@@ -64,15 +64,15 @@ 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.3</version>
67+
<version>0.23.4</version>
6868
</dependency>
6969
```
7070

7171
And make sure that you use the latest Kotlin version:
7272

7373
```xml
7474
<properties>
75-
<kotlin.version>1.2.50</kotlin.version>
75+
<kotlin.version>1.2.51</kotlin.version>
7676
</properties>
7777
```
7878

@@ -81,14 +81,14 @@ 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.3'
84+
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.23.4'
8585
```
8686

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

8989
```groovy
9090
buildscript {
91-
ext.kotlin_version = '1.2.50'
91+
ext.kotlin_version = '1.2.51'
9292
}
9393
```
9494

@@ -111,7 +111,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
111111
module as dependency when using `kotlinx.coroutines` on Android:
112112

113113
```groovy
114-
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-android:0.23.3'
114+
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-android:0.23.4'
115115
```
116116

117117
This gives you access to Android [UI](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-android/kotlinx.coroutines.experimental.android/-u-i.html)

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 0.23.3-SNAPSHOT
1+
version = 0.23.4-SNAPSHOT
22
group = org.jetbrains.kotlinx
33

44
kotlin_version = 1.2.51

ui/coroutines-guide-ui.md

Lines changed: 1 addition & 1 deletion
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.3"
176+
compile "org.jetbrains.kotlinx:kotlinx-coroutines-android:0.23.4"
177177
```
178178

179179
Coroutines are experimental feature in Kotlin.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ org.gradle.jvmargs=-Xmx1536m
1818

1919
kotlin.coroutines=enable
2020

21-
kotlin_version = 1.2.50
22-
coroutines_version = 0.23.3
21+
kotlin_version = 1.2.51
22+
coroutines_version = 0.23.4
2323

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ org.gradle.jvmargs=-Xmx1536m
1818

1919
kotlin.coroutines=enable
2020

21-
kotlin_version = 1.2.50
22-
coroutines_version = 0.23.3
21+
kotlin_version = 1.2.51
22+
coroutines_version = 0.23.4
2323

0 commit comments

Comments
 (0)