Skip to content

Commit

Permalink
Update Kotlin version to 1.3.71 (#1906)
Browse files Browse the repository at this point in the history
  • Loading branch information
qwwdfsad committed Apr 7, 2020
1 parent de29acd commit 532368f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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>
```

Expand All @@ -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'
}
```

Expand All @@ -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"
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion kotlinx-coroutines-core/jvm/src/channels/TickerChannels.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion kotlinx-coroutines-debug/src/CoroutineInfo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 532368f

Please sign in to comment.