Skip to content

Commit 2326634

Browse files
committed
Version 1.1.1
1 parent c39effe commit 2326634

File tree

9 files changed

+21
-14
lines changed

9 files changed

+21
-14
lines changed

CHANGES.md

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

3+
## Version 1.1.1
4+
5+
* Maintenance release, no changes in the codebase
6+
* Kotlin is updated to 1.3.20
7+
* Gradle is updated to 4.10
8+
* Native module is published with Gradle metadata v0.4
9+
310
## Version 1.1.0
411

512
* Kotlin version updated to 1.3.11.

README.md

+5-5
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=1.1.0) ](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.1.0)
5+
[![Download](https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=1.1.1) ](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.1.1)
66

77
Library support for Kotlin coroutines with [multiplatform](#multiplatform) support.
88
This is a companion version for Kotlin `1.3.11` release.
@@ -74,7 +74,7 @@ Add dependencies (you can also add other modules that you need):
7474
<dependency>
7575
<groupId>org.jetbrains.kotlinx</groupId>
7676
<artifactId>kotlinx-coroutines-core</artifactId>
77-
<version>1.1.0</version>
77+
<version>1.1.1</version>
7878
</dependency>
7979
```
8080

@@ -92,7 +92,7 @@ Add dependencies (you can also add other modules that you need):
9292

9393
```groovy
9494
dependencies {
95-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.0'
95+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1'
9696
}
9797
```
9898

@@ -118,7 +118,7 @@ Add dependencies (you can also add other modules that you need):
118118

119119
```groovy
120120
dependencies {
121-
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.0")
121+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1")
122122
}
123123
```
124124

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

148148
```groovy
149-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.1.0'
149+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.1.1'
150150
```
151151
This gives you access to Android [Dispatchers.Main](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-android/kotlinx.coroutines.android/kotlinx.coroutines.-dispatchers/index.html)
152152
coroutine dispatcher and also makes sure that in case of crashed coroutine with unhandled exception this

core/kotlinx-coroutines-debug/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ of coroutines hierarchy referenced by a [Job] or [CoroutineScope] instances usin
1818
Add `kotlinx-coroutines-debug` to your project test dependencies:
1919
```
2020
dependencies {
21-
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.1.0'
21+
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.1.1'
2222
}
2323
```
2424

2525
### Using as JVM agent
2626

2727
It is possible to use this module as a standalone JVM agent to enable debug probes on the application startup.
28-
You can run your application with an additional argument: `-javaagent:kotlinx-coroutines-debug-1.1.0.jar`.
28+
You can run your application with an additional argument: `-javaagent:kotlinx-coroutines-debug-1.1.1.jar`.
2929
Additionally, on Linux and Mac OS X you can use `kill -5 $pid` command in order to force your application to print all alive coroutines.
3030

3131

core/kotlinx-coroutines-test/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Test utilities for `kotlinx.coroutines`. Provides `Dispatchers.setMain` to overr
77
Add `kotlinx-coroutines-test` to your project test dependencies:
88
```
99
dependencies {
10-
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.1.0'
10+
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.1.1'
1111
}
1212
```
1313

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Kotlin
2-
version=1.1.0-SNAPSHOT
2+
version=1.1.1-SNAPSHOT
33
group=org.jetbrains.kotlinx
44
kotlin_version=1.3.20
55
kotlin_native_version=1.3.20
@@ -10,7 +10,7 @@ atomicFU_version=0.12.1
1010
html_version=0.6.8
1111
lincheck_version=2.0
1212
dokka_version=0.9.16-rdev-2-mpp-hacks
13-
bintray_version=1.8.2-SNAPSHOT
13+
bintray_version=1.8.4-jetbrains-5
1414
byte_buddy_version=1.9.3
1515
artifactory_plugin_version=4.7.3
1616

native/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ repositories {
4242
}
4343
4444
dependencies {
45-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core-native:1.1.0'
45+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core-native:1.1.1'
4646
}
4747
4848
sourceSets {

ui/coroutines-guide-ui.md

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

167167
```groovy
168-
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.1.0"
168+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.1.1"
169169
```
170170

171171
You can clone [kotlinx.coroutines](https://github.com/Kotlin/kotlinx.coroutines) project from GitHub onto your

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.3.11
22-
coroutines_version=1.1.0
22+
coroutines_version=1.1.1
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.3.11
22-
coroutines_version=1.1.0
22+
coroutines_version=1.1.1
2323

0 commit comments

Comments
 (0)