Skip to content

Commit f647ee1

Browse files
committed
Update Kotlin version to 1.3.71 (#1906)
1 parent 2e87880 commit f647ee1

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![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.
8-
This is a companion version for Kotlin `1.3.70` release.
8+
This is a companion version for Kotlin `1.3.71` release.
99

1010
```kotlin
1111
suspend fun main() = coroutineScope {
@@ -91,7 +91,7 @@ And make sure that you use the latest Kotlin version:
9191

9292
```xml
9393
<properties>
94-
<kotlin.version>1.3.70</kotlin.version>
94+
<kotlin.version>1.3.71</kotlin.version>
9595
</properties>
9696
```
9797

@@ -109,7 +109,7 @@ And make sure that you use the latest Kotlin version:
109109

110110
```groovy
111111
buildscript {
112-
ext.kotlin_version = '1.3.70'
112+
ext.kotlin_version = '1.3.71'
113113
}
114114
```
115115

@@ -135,7 +135,7 @@ And make sure that you use the latest Kotlin version:
135135

136136
```groovy
137137
plugins {
138-
kotlin("jvm") version "1.3.70"
138+
kotlin("jvm") version "1.3.71"
139139
}
140140
```
141141

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Kotlin
66
version=1.3.5-SNAPSHOT
77
group=org.jetbrains.kotlinx
8-
kotlin_version=1.3.70
8+
kotlin_version=1.3.71
99

1010
# Dependencies
1111
junit_version=4.12

kotlinx-coroutines-core/jvm/src/channels/TickerChannels.kt

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import kotlin.coroutines.*
1313
* **Note: Ticker channels are not currently integrated with structured concurrency and their api will change in the future.**
1414
*/
1515
@ObsoleteCoroutinesApi
16-
@Suppress("NO_EXPLICIT_VISIBILITY_IN_API_MODE")
1716
public enum class TickerMode {
1817
/**
1918
* Adjust delay to maintain fixed period if consumer cannot keep up or is otherwise slow.

kotlinx-coroutines-debug/src/CoroutineInfo.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

5-
@file:Suppress("PropertyName", "NO_EXPLICIT_VISIBILITY_IN_API_MODE")
5+
@file:Suppress("PropertyName")
66

77
package kotlinx.coroutines.debug
88

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ org.gradle.jvmargs=-Xmx1536m
2020
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
2121
# org.gradle.parallel=true
2222

23-
kotlin_version=1.3.70
23+
kotlin_version=1.3.71
2424
coroutines_version=1.3.5
2525

2626
android.useAndroidX=true

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ org.gradle.jvmargs=-Xmx1536m
2020
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
2121
# org.gradle.parallel=true
2222

23-
kotlin_version=1.3.70
23+
kotlin_version=1.3.71
2424
coroutines_version=1.3.5
2525

2626
android.useAndroidX=true

0 commit comments

Comments
 (0)