Skip to content

Commit 4f0071d

Browse files
authored
Merge pull request #951 from Kotlin/version-1.1.1
Version 1.1.1
2 parents 8f1c728 + 2326634 commit 4f0071d

File tree

17 files changed

+32
-26
lines changed

17 files changed

+32
-26
lines changed

CHANGES.md

Lines changed: 7 additions & 0 deletions
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

Lines changed: 5 additions & 5 deletions
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

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ buildscript {
1212
}
1313
repositories {
1414
jcenter()
15+
maven { url "https://teamcity.jetbrains.com/guestAuth/app/rest/builds/id:1907319/artifacts/content/maven" }
1516
maven { url "https://kotlin.bintray.com/kotlinx" }
1617
maven { url "https://kotlin.bintray.com/kotlin-dev" }
1718
maven { url "https://kotlin.bintray.com/kotlin-eap" }
@@ -63,6 +64,7 @@ allprojects {
6364
google()
6465
}
6566
jcenter()
67+
maven { url "https://teamcity.jetbrains.com/guestAuth/app/rest/builds/id:1907319/artifacts/content/maven" }
6668
maven { url "https://kotlin.bintray.com/kotlin-dev" }
6769
maven { url "https://kotlin.bintray.com/kotlin-eap" }
6870
maven { url "https://kotlin.bintray.com/kotlinx" }

core/kotlinx-coroutines-core/test/CancellableContinuationJvmTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class CancellableContinuationJvmTest : TestBase() {
1616
private suspend fun checkToString() {
1717
suspendCancellableCoroutine<Unit> {
1818
it.resume(Unit)
19-
assertTrue(it.toString().contains("kotlinx/coroutines/CancellableContinuationJvmTest.checkToString(CancellableContinuationJvmTest.kt"))
19+
assertTrue(it.toString().contains("kotlinx.coroutines.CancellableContinuationJvmTest.checkToString(CancellableContinuationJvmTest.kt"))
2020
}
2121
}
2222
}

core/kotlinx-coroutines-core/test/scheduling/CoroutineSchedulerStressTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class CoroutineSchedulerStressTest : TestBase() {
7878

7979
finishLatch.await()
8080

81-
require(blockingThread!! !in observedThreads)
81+
require(!observedThreads.containsKey(blockingThread!!))
8282
validateResults()
8383
}
8484

core/kotlinx-coroutines-debug/README.md

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Kotlin
2-
version=1.1.0-SNAPSHOT
2+
version=1.1.1-SNAPSHOT
33
group=org.jetbrains.kotlinx
4-
kotlin_version=1.3.11
5-
kotlin_native_version=1.3.11
4+
kotlin_version=1.3.20
5+
kotlin_native_version=1.3.20
66

77
# Dependencies
88
junit_version=4.12
9-
atomicFU_version=0.12.0
9+
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

gradle/publish-bintray.gradle

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,7 @@ bintrayUpload.doFirst {
117117
if (!isNative()) {
118118
afterEvaluate {
119119
publishing.publications.each { pub ->
120-
pub.gradleModuleMetadataFile = null
121-
tasks.matching { it.name == "generateMetadataFileFor${pub.name.capitalize()}Publication" }.all {
122-
onlyIf { false }
123-
}
120+
pub.moduleDescriptorGenerator = null
124121
}
125122
}
126123
}

gradle/wrapper/gradle-wrapper.jar

1.72 KB
Binary file not shown.

0 commit comments

Comments
 (0)