aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorVsevolod Tolstopyatov <qwwdfsad@gmail.com>2020-04-07 17:32:17 +0300
committerGitHub <noreply@github.com>2020-04-07 17:32:17 +0300
commit532368fce9bd4e67c1428fc8d5a59264c9c46cc7 (patch)
treeeb3ec6e506871681556847590e0582bba3e8d977 /README.md
parentde29acd404e4dd9afbbff57300161547516b5604 (diff)
downloadkotlinx.coroutines-532368fce9bd4e67c1428fc8d5a59264c9c46cc7.tar.gz
Update Kotlin version to 1.3.71 (#1906)
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 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"
}
```