File tree 6 files changed +8
-9
lines changed
kotlinx-coroutines-core/jvm/src/channels
kotlinx-coroutines-debug/src
ui/kotlinx-coroutines-android
6 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 5
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 )
6
6
7
7
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.
9
9
10
10
``` kotlin
11
11
suspend fun main () = coroutineScope {
@@ -91,7 +91,7 @@ And make sure that you use the latest Kotlin version:
91
91
92
92
``` xml
93
93
<properties >
94
- <kotlin .version>1.3.70 </kotlin .version>
94
+ <kotlin .version>1.3.71 </kotlin .version>
95
95
</properties >
96
96
```
97
97
@@ -109,7 +109,7 @@ And make sure that you use the latest Kotlin version:
109
109
110
110
``` groovy
111
111
buildscript {
112
- ext.kotlin_version = '1.3.70 '
112
+ ext.kotlin_version = '1.3.71 '
113
113
}
114
114
```
115
115
@@ -135,7 +135,7 @@ And make sure that you use the latest Kotlin version:
135
135
136
136
``` groovy
137
137
plugins {
138
- kotlin("jvm") version "1.3.70 "
138
+ kotlin("jvm") version "1.3.71 "
139
139
}
140
140
```
141
141
Original file line number Diff line number Diff line change 5
5
# Kotlin
6
6
version =1.3.5-SNAPSHOT
7
7
group =org.jetbrains.kotlinx
8
- kotlin_version =1.3.70
8
+ kotlin_version =1.3.71
9
9
10
10
# Dependencies
11
11
junit_version =4.12
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import kotlin.coroutines.*
13
13
* **Note: Ticker channels are not currently integrated with structured concurrency and their api will change in the future.**
14
14
*/
15
15
@ObsoleteCoroutinesApi
16
- @Suppress(" NO_EXPLICIT_VISIBILITY_IN_API_MODE" )
17
16
public enum class TickerMode {
18
17
/* *
19
18
* Adjust delay to maintain fixed period if consumer cannot keep up or is otherwise slow.
Original file line number Diff line number Diff line change 2
2
* Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3
3
*/
4
4
5
- @file:Suppress(" PropertyName" , " NO_EXPLICIT_VISIBILITY_IN_API_MODE " )
5
+ @file:Suppress(" PropertyName" )
6
6
7
7
package kotlinx.coroutines.debug
8
8
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ org.gradle.jvmargs=-Xmx1536m
20
20
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
21
21
# org.gradle.parallel=true
22
22
23
- kotlin_version =1.3.70
23
+ kotlin_version =1.3.71
24
24
coroutines_version =1.3.5
25
25
26
26
android.useAndroidX =true
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ org.gradle.jvmargs=-Xmx1536m
20
20
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
21
21
# org.gradle.parallel=true
22
22
23
- kotlin_version =1.3.70
23
+ kotlin_version =1.3.71
24
24
coroutines_version =1.3.5
25
25
26
26
android.useAndroidX =true
You can’t perform that action at this time.
0 commit comments