Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.3) ](https://bintray.com/kotlin/kotlinx/kotlinx.coroutines/1.3.3)

Library support for Kotlin coroutines with [multiplatform](#multiplatform) support.
This is a companion version for Kotlin `1.3.61` release.
This is a companion version for Kotlin `1.3.70` release.

```kotlin
suspend fun main() = coroutineScope {
Expand Down Expand Up @@ -90,7 +90,7 @@ And make sure that you use the latest Kotlin version:

```xml
<properties>
<kotlin.version>1.3.61</kotlin.version>
<kotlin.version>1.3.70</kotlin.version>
</properties>
```

Expand All @@ -108,7 +108,7 @@ And make sure that you use the latest Kotlin version:

```groovy
buildscript {
ext.kotlin_version = '1.3.61'
ext.kotlin_version = '1.3.70'
}
```

Expand All @@ -134,7 +134,7 @@ And make sure that you use the latest Kotlin version:

```groovy
plugins {
kotlin("jvm") version "1.3.61"
kotlin("jvm") version "1.3.70"
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
# Kotlin
version=1.3.3-SNAPSHOT
group=org.jetbrains.kotlinx
kotlin_version=1.3.61
kotlin_version=1.3.70

# Dependencies
junit_version=4.12
atomicfu_version=0.14.1
atomicfu_version=0.14.2
knit_version=0.1.2
html_version=0.6.8
lincheck_version=2.5.3
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.61
kotlin_version=1.3.70
coroutines_version=1.3.3

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.61
kotlin_version=1.3.70
coroutines_version=1.3.3

android.useAndroidX=true
Expand Down