aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md8
-rw-r--r--gradle.properties2
-rw-r--r--kotlinx-coroutines-core/jvm/src/channels/TickerChannels.kt1
-rw-r--r--kotlinx-coroutines-debug/src/CoroutineInfo.kt2
-rw-r--r--ui/kotlinx-coroutines-android/animation-app/gradle.properties2
-rw-r--r--ui/kotlinx-coroutines-android/example-app/gradle.properties2
6 files changed, 8 insertions, 9 deletions
diff --git a/README.md b/README.md
index b5456857..8bafa78e 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
[![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)
Library support for Kotlin coroutines with [multiplatform](#multiplatform) support.
-This is a companion version for Kotlin `1.3.70` release.
+This is a companion version for Kotlin `1.3.71` release.
```kotlin
suspend fun main() = coroutineScope {
@@ -91,7 +91,7 @@ And make sure that you use the latest Kotlin version:
```xml
<properties>
- <kotlin.version>1.3.70</kotlin.version>
+ <kotlin.version>1.3.71</kotlin.version>
</properties>
```
@@ -109,7 +109,7 @@ And make sure that you use the latest Kotlin version:
```groovy
buildscript {
- ext.kotlin_version = '1.3.70'
+ ext.kotlin_version = '1.3.71'
}
```
@@ -135,7 +135,7 @@ And make sure that you use the latest Kotlin version:
```groovy
plugins {
- kotlin("jvm") version "1.3.70"
+ kotlin("jvm") version "1.3.71"
}
```
diff --git a/gradle.properties b/gradle.properties
index ac145da5..daf5b67f 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -5,7 +5,7 @@
# Kotlin
version=1.3.5-SNAPSHOT
group=org.jetbrains.kotlinx
-kotlin_version=1.3.70
+kotlin_version=1.3.71
# Dependencies
junit_version=4.12
diff --git a/kotlinx-coroutines-core/jvm/src/channels/TickerChannels.kt b/kotlinx-coroutines-core/jvm/src/channels/TickerChannels.kt
index b9f39af9..1e6797ac 100644
--- a/kotlinx-coroutines-core/jvm/src/channels/TickerChannels.kt
+++ b/kotlinx-coroutines-core/jvm/src/channels/TickerChannels.kt
@@ -13,7 +13,6 @@ import kotlin.coroutines.*
* **Note: Ticker channels are not currently integrated with structured concurrency and their api will change in the future.**
*/
@ObsoleteCoroutinesApi
-@Suppress("NO_EXPLICIT_VISIBILITY_IN_API_MODE")
public enum class TickerMode {
/**
* Adjust delay to maintain fixed period if consumer cannot keep up or is otherwise slow.
diff --git a/kotlinx-coroutines-debug/src/CoroutineInfo.kt b/kotlinx-coroutines-debug/src/CoroutineInfo.kt
index 10540d16..c9517fe8 100644
--- a/kotlinx-coroutines-debug/src/CoroutineInfo.kt
+++ b/kotlinx-coroutines-debug/src/CoroutineInfo.kt
@@ -2,7 +2,7 @@
* Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
-@file:Suppress("PropertyName", "NO_EXPLICIT_VISIBILITY_IN_API_MODE")
+@file:Suppress("PropertyName")
package kotlinx.coroutines.debug
diff --git a/ui/kotlinx-coroutines-android/animation-app/gradle.properties b/ui/kotlinx-coroutines-android/animation-app/gradle.properties
index e9d79d0e..da02aabb 100644
--- a/ui/kotlinx-coroutines-android/animation-app/gradle.properties
+++ b/ui/kotlinx-coroutines-android/animation-app/gradle.properties
@@ -20,7 +20,7 @@ org.gradle.jvmargs=-Xmx1536m
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
-kotlin_version=1.3.70
+kotlin_version=1.3.71
coroutines_version=1.3.5
android.useAndroidX=true
diff --git a/ui/kotlinx-coroutines-android/example-app/gradle.properties b/ui/kotlinx-coroutines-android/example-app/gradle.properties
index e9d79d0e..da02aabb 100644
--- a/ui/kotlinx-coroutines-android/example-app/gradle.properties
+++ b/ui/kotlinx-coroutines-android/example-app/gradle.properties
@@ -20,7 +20,7 @@ org.gradle.jvmargs=-Xmx1536m
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
-kotlin_version=1.3.70
+kotlin_version=1.3.71
coroutines_version=1.3.5
android.useAndroidX=true