File tree 8 files changed +15
-9
lines changed
kotlinx-coroutines-android
8 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 1
1
# Change log for kotlinx.coroutines
2
2
3
+ ## Version 0.22.5
4
+
5
+ * JS: Fixed main file reference in [ NPM package] ( https://www.npmjs.com/package/kotlinx-coroutines-core )
6
+ * Added context argument to ` Channel.filterNot ` (PR by @jcornaz ).
7
+ * Implemented debug ` toString ` for channels (see #185 ).
8
+
3
9
## Version 0.22.4
4
10
5
11
* JS: Publish to NPM (see #229 ).
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ official JetBrains project] ( http://jb.gg/badges/official.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
4
4
[ ![ 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.22.4 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/0.22.4 )
5
+ [ ![ Download] ( https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=0.22.5 ) ] ( https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/0.22.5 )
6
6
7
7
Library support for Kotlin coroutines in
8
8
[ Kotlin/JVM] ( core/README.md ) and
@@ -64,7 +64,7 @@ Add dependencies (you can also add other modules that you need):
64
64
<dependency >
65
65
<groupId >org.jetbrains.kotlinx</groupId >
66
66
<artifactId >kotlinx-coroutines-core</artifactId >
67
- <version >0.22.4 </version >
67
+ <version >0.22.5 </version >
68
68
</dependency >
69
69
```
70
70
@@ -81,7 +81,7 @@ And make sure that you use the latest Kotlin version:
81
81
Add dependencies (you can also add other modules that you need):
82
82
83
83
``` groovy
84
- compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.22.4 '
84
+ compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.22.5 '
85
85
```
86
86
87
87
And make sure that you use the latest Kotlin version:
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ To release new `<version>` of `kotlinx-coroutines`:
15
15
* [ ` README.md ` ] ( README.md )
16
16
* [ ` coroutines-guide.md ` ] ( coroutines-guide.md )
17
17
* [ ` gradle.properties ` ] ( gradle.properties )
18
- * [ ` ui/kotlinx-coroutines-android/example-app/app/build. gradle ` ] ( ui/kotlinx-coroutines-android/example-app/app/build. gradle )
18
+ * [ ` ui/kotlinx-coroutines-android/example-app/gradle.properties ` ] ( ui/kotlinx-coroutines-android/example-app/gradle.properties )
19
19
* [ ` ui/kotlinx-coroutines-android/animation-app/gradle.properties ` ] ( ui/kotlinx-coroutines-android/animation-app/gradle.properties )
20
20
* Make sure to ** exclude** ` CHANGES.md ` from replacements.
21
21
Original file line number Diff line number Diff line change 1
- version = 0.22.4 -SNAPSHOT
1
+ version = 0.22.5 -SNAPSHOT
2
2
3
3
kotlin_version = 1.2.21
4
4
junit_version = 4.12
Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ Add dependencies on `kotlinx-coroutines-android` module to the `dependencies { .
173
173
` app/build.gradle ` file:
174
174
175
175
``` groovy
176
- compile "org.jetbrains.kotlinx:kotlinx-coroutines-android:0.22.4 "
176
+ compile "org.jetbrains.kotlinx:kotlinx-coroutines-android:0.22.5 "
177
177
```
178
178
179
179
Coroutines are experimental feature in Kotlin.
Original file line number Diff line number Diff line change @@ -19,5 +19,5 @@ org.gradle.jvmargs=-Xmx1536m
19
19
kotlin.coroutines =enable
20
20
21
21
kotlin_version = 1.2.21
22
- coroutines_version = 0.22.4
22
+ coroutines_version = 0.22.5
23
23
Original file line number Diff line number Diff line change @@ -31,5 +31,5 @@ dependencies {
31
31
compile ' com.android.support:design:25.4.0'
32
32
testCompile ' junit:junit:4.12'
33
33
compile " org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version "
34
- compile " org.jetbrains.kotlinx:kotlinx-coroutines-android:0.22.4 "
34
+ compile " org.jetbrains.kotlinx:kotlinx-coroutines-android:$c oroutines_version "
35
35
}
Original file line number Diff line number Diff line change @@ -19,5 +19,5 @@ org.gradle.jvmargs=-Xmx1536m
19
19
kotlin.coroutines =enable
20
20
21
21
kotlin_version = 1.2.21
22
- coroutines_version = 0.22.4
22
+ coroutines_version = 0.22.5
23
23
You can’t perform that action at this time.
0 commit comments