Skip to content

Commit 722cf5f

Browse files
committed
Version 1.6.0-RC2
1 parent 3bd4376 commit 722cf5f

File tree

7 files changed

+25
-16
lines changed

7 files changed

+25
-16
lines changed

CHANGES.md

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

3+
## Version 1.6.0-RC2
4+
5+
* `@ExperimentalTime` is no longer needed for methods that use `Duration` (#3041).
6+
* `FlowCollector` is now `fun interface`, and corresponding inline extension is removed (#3047).
7+
* Fixed the exception handler being invoked several times on Android, thanks to @1zaman (#3056).
8+
* The deprecated `TestCoroutineScope` is no longer sealed, to simplify migration from it (#3072).
9+
* `runTest` gives more informative errors when it times out waiting for external completion (#3071).
10+
* `SendChannel.trySendBlocking` is now available on Kotlin/Native (#3064).
11+
* Fixed the bug due to which `Dispatchers.Main` was not used for `delay` and `withTimeout` (#3046).
12+
* JDK 1.6 is no longer required for building the project (#3043).
13+
* New version of Dokka is used, fixing the memory leak when building the coroutines and providing brand new reference visuals (https://kotlin.github.io/kotlinx.coroutines/) (#3051, #3054).
14+
315
## Version 1.6.0-RC
416

517
### kotlinx-coroutines-test rework
@@ -34,7 +46,7 @@
3446
* `Flow` exception transparency mechanism is improved to be more exception-friendly (#3017, #2860).
3547
* Cancellation from `flat*` operators that leverage multiple coroutines is no longer propagated upstream (#2964).
3648
* `SharedFlow.collect` now returns `Nothing` (#2789, #2502).
37-
* `FlowCollector` is now `fun interface`, and corresponding inline extension is removed (#2790).
49+
* `DisposableHandle` is now `fun interface`, and corresponding inline extension is removed (#2790).
3850
* Deprecation level of all previously deprecated signatures is raised (#3024).
3951
* The version file is shipped with each JAR as a resource (#2941).
4052
* Unhandled exceptions on K/N are passed to the standard library function `processUnhandledException` (#2981).

CONTRIBUTING.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,12 @@ to Gradle (in Preferences -> Build, Execution, Deployment -> Build Tools -> Grad
8080
### Environment requirements
8181

8282
* JDK >= 11 referred to by the `JAVA_HOME` environment variable.
83-
* JDK 1.6 referred to by the `JDK_16` environment variable.
84-
It is OK to have `JDK_16` pointing to a non 1.6 JDK (e.g. `JAVA_HOME`) for external contributions.
8583
* JDK 1.8 referred to by the `JDK_18` environment variable. Only used by nightly stress-tests.
8684
It is OK to have `JDK_18` to a non 1.8 JDK (e.g. `JAVA_HOME`) for external contributions.
87-
85+
8886
For external contributions you can for example add this to your shell startup scripts (e.g. `~/.zshrc`):
8987
```shell
9088
# This assumes JAVA_HOME is set already to a JDK >= 11 version
91-
export JDK_16="$JAVA_HOME"
9289
export JDK_18="$JAVA_HOME"
9390
```
9491

README.md

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

33
[![official JetBrains project](https://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)](https://www.apache.org/licenses/LICENSE-2.0)
5-
[![Download](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.0-RC)](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.0-RC/pom)
5+
[![Download](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.0-RC2)](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.6.0-RC2/pom)
66
[![Kotlin](https://img.shields.io/badge/kotlin-1.6.0-blue.svg?logo=kotlin)](http://kotlinlang.org)
77
[![Slack channel](https://img.shields.io/badge/chat-slack-green.svg?logo=slack)](https://kotlinlang.slack.com/messages/coroutines/)
88

@@ -83,7 +83,7 @@ Add dependencies (you can also add other modules that you need):
8383
<dependency>
8484
<groupId>org.jetbrains.kotlinx</groupId>
8585
<artifactId>kotlinx-coroutines-core</artifactId>
86-
<version>1.6.0-RC</version>
86+
<version>1.6.0-RC2</version>
8787
</dependency>
8888
```
8989

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

102102
```groovy
103103
dependencies {
104-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-RC'
104+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-RC2'
105105
}
106106
```
107107

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

128128
```groovy
129129
dependencies {
130-
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-RC")
130+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-RC2")
131131
}
132132
```
133133

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

149149
```groovy
150-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0-RC'
150+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0-RC2'
151151
```
152152

153153
This gives you access to the Android [Dispatchers.Main]
@@ -180,7 +180,7 @@ In common code that should get compiled for different platforms, you can add a d
180180
```groovy
181181
commonMain {
182182
dependencies {
183-
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-RC")
183+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-RC2")
184184
}
185185
}
186186
```
@@ -192,7 +192,7 @@ Platform-specific dependencies are recommended to be used only for non-multiplat
192192
#### JS
193193

194194
Kotlin/JS version of `kotlinx.coroutines` is published as
195-
[`kotlinx-coroutines-core-js`](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.6.0-RC/jar)
195+
[`kotlinx-coroutines-core-js`](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.6.0-RC2/jar)
196196
(follow the link to get the dependency declaration snippet) and as [`kotlinx-coroutines-core`](https://www.npmjs.com/package/kotlinx-coroutines-core) NPM package.
197197

198198
#### Native

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
# Kotlin
6-
version=1.6.0-RC-SNAPSHOT
6+
version=1.6.0-RC2-SNAPSHOT
77
group=org.jetbrains.kotlinx
88
kotlin_version=1.6.0
99

kotlinx-coroutines-debug/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ stacktraces will be dumped to the console.
6161
### Using as JVM agent
6262

6363
Debug module can also be used as a standalone JVM agent to enable debug probes on the application startup.
64-
You can run your application with an additional argument: `-javaagent:kotlinx-coroutines-debug-1.6.0-RC.jar`.
64+
You can run your application with an additional argument: `-javaagent:kotlinx-coroutines-debug-1.6.0-RC2.jar`.
6565
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.
6666
When used as Java agent, `"kotlinx.coroutines.debug.enable.creation.stack.trace"` system property can be used to control
6767
[DebugProbes.enableCreationStackTraces] along with agent startup.

kotlinx-coroutines-test/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Provided [TestDispatcher] implementations:
2626
Add `kotlinx-coroutines-test` to your project test dependencies:
2727
```
2828
dependencies {
29-
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.0-RC'
29+
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.0-RC2'
3030
}
3131
```
3232

ui/coroutines-guide-ui.md

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

112112
```groovy
113-
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0-RC"
113+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0-RC2"
114114
```
115115

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

0 commit comments

Comments
 (0)