Skip to content

Commit 98ab2dc

Browse files
committed
Version 1.3.5
1 parent aa86ff3 commit 98ab2dc

File tree

8 files changed

+28
-15
lines changed

8 files changed

+28
-15
lines changed

CHANGES.md

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

3+
## Version 1.3.5
4+
5+
* `firstOrNull` operator. Contributed by @bradynpoulsen.
6+
* `java.time` adapters for Flow operators. Contributed by @fvasco.
7+
* `kotlin.time.Duration` support (#1402). Contributed by @fvasco.
8+
* Memory leak with a mix of reusable and non-reusable continuations is fixed (#1855).
9+
* `DebugProbes` are ready for production installation: its performance is increased, the flag to disable creation stacktraces to reduce the footprint is introduced (#1379, #1372).
10+
* Stacktrace recovery workaround for Android 6.0 and earlier bug (#1866).
11+
* New integration module: `kotlinx-coroutines-jdk9` with adapters for `java.util.concurrent.Flow`.
12+
* `BroadcastChannel.close` properly starts lazy coroutine (#1713).
13+
* `kotlinx-coroutines-bom` is published without Gradle metadata.
14+
* Make calls to service loader in reactor integrations optimizable by R8 (#1817).
15+
316
## Version 1.3.4
417

518
### Flow

README.md

Lines changed: 8 additions & 8 deletions
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://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=1.3.4) ](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.3.4)
5+
[![Download](https://api.bintray.com/packages/kotlin/kotlinx/kotlinx.coroutines/images/download.svg?version=1.3.5) ](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.3.5)
66

77
Library support for Kotlin coroutines with [multiplatform](#multiplatform) support.
88
This is a companion version for Kotlin `1.3.70` release.
@@ -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.3.4</version>
86+
<version>1.3.5</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.3.4'
104+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5'
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.3.4")
130+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5")
131131
}
132132
```
133133

@@ -146,7 +146,7 @@ Make sure that you have either `jcenter()` or `mavenCentral()` in the list of re
146146
Core modules of `kotlinx.coroutines` are also available for
147147
[Kotlin/JS](#js) and [Kotlin/Native](#native).
148148
In common code that should get compiled for different platforms, add dependency to
149-
[`kotlinx-coroutines-core-common`](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-common/1.3.4/jar)
149+
[`kotlinx-coroutines-core-common`](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-common/1.3.5/jar)
150150
(follow the link to get the dependency declaration snippet).
151151

152152
### Android
@@ -155,7 +155,7 @@ Add [`kotlinx-coroutines-android`](ui/kotlinx-coroutines-android)
155155
module as dependency when using `kotlinx.coroutines` on Android:
156156

157157
```groovy
158-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.4'
158+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.5'
159159
```
160160

161161
This gives you access to Android [Dispatchers.Main]
@@ -171,15 +171,15 @@ For more details see ["Optimization" section for Android](ui/kotlinx-coroutines-
171171
### JS
172172

173173
[Kotlin/JS](https://kotlinlang.org/docs/reference/js-overview.html) version of `kotlinx.coroutines` is published as
174-
[`kotlinx-coroutines-core-js`](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.3.4/jar)
174+
[`kotlinx-coroutines-core-js`](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-js/1.3.5/jar)
175175
(follow the link to get the dependency declaration snippet).
176176

177177
You can also use [`kotlinx-coroutines-core`](https://www.npmjs.com/package/kotlinx-coroutines-core) package via NPM.
178178

179179
### Native
180180

181181
[Kotlin/Native](https://kotlinlang.org/docs/reference/native-overview.html) version of `kotlinx.coroutines` is published as
182-
[`kotlinx-coroutines-core-native`](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-native/1.3.4/jar)
182+
[`kotlinx-coroutines-core-native`](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core-native/1.3.5/jar)
183183
(follow the link to get the dependency declaration snippet).
184184

185185
Only single-threaded code (JS-style) on Kotlin/Native is currently supported.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
# Kotlin
6-
version=1.3.4-SNAPSHOT
6+
version=1.3.5-SNAPSHOT
77
group=org.jetbrains.kotlinx
88
kotlin_version=1.3.70
99

kotlinx-coroutines-debug/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ 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.3.4'
21+
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.3.5'
2222
}
2323
```
2424

@@ -56,7 +56,7 @@ stacktraces will be dumped to the console.
5656
### Using as JVM agent
5757

5858
Debug module can also be used as a standalone JVM agent to enable debug probes on the application startup.
59-
You can run your application with an additional argument: `-javaagent:kotlinx-coroutines-debug-1.3.4.jar`.
59+
You can run your application with an additional argument: `-javaagent:kotlinx-coroutines-debug-1.3.5.jar`.
6060
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.
6161
When used as Java agent, `"kotlinx.coroutines.debug.enable.creation.stack.trace"` system property can be used to control
6262
[DebugProbes.enableCreationStackTraces] along with agent startup.

kotlinx-coroutines-test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This package provides testing utilities for effectively testing coroutines.
99
Add `kotlinx-coroutines-test` to your project test dependencies:
1010
```
1111
dependencies {
12-
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.3.4'
12+
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.3.5'
1313
}
1414
```
1515

ui/coroutines-guide-ui.md

Lines changed: 1 addition & 1 deletion
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.3.4"
113+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.5"
114114
```
115115

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ org.gradle.jvmargs=-Xmx1536m
2121
# org.gradle.parallel=true
2222

2323
kotlin_version=1.3.70
24-
coroutines_version=1.3.4
24+
coroutines_version=1.3.5
2525

2626
android.useAndroidX=true
2727
android.enableJetifier=true

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ org.gradle.jvmargs=-Xmx1536m
2121
# org.gradle.parallel=true
2222

2323
kotlin_version=1.3.70
24-
coroutines_version=1.3.4
24+
coroutines_version=1.3.5
2525

2626
android.useAndroidX=true
2727
android.enableJetifier=true

0 commit comments

Comments
 (0)