Skip to content

Commit 7fe0e0c

Browse files
authored
Update Kotlin to 2.0 (#4137)
1 parent b9fb575 commit 7fe0e0c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
[![JetBrains official project](https://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
55
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
66
[![Download](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.8.1)](https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.8.1)
7-
[![Kotlin](https://img.shields.io/badge/kotlin-1.9.21-blue.svg?logo=kotlin)](http://kotlinlang.org)
7+
[![Kotlin](https://img.shields.io/badge/kotlin-2.0.0-blue.svg?logo=kotlin)](http://kotlinlang.org)
88
[![Slack channel](https://img.shields.io/badge/chat-slack-green.svg?logo=slack)](https://kotlinlang.slack.com/messages/coroutines/)
99

1010
Library support for Kotlin coroutines with [multiplatform](#multiplatform) support.
11-
This is a companion version for the Kotlin `1.9.21` release.
11+
This is a companion version for the Kotlin `2.0.0` release.
1212

1313
```kotlin
1414
suspend fun main() = coroutineScope {
@@ -93,7 +93,7 @@ And make sure that you use the latest Kotlin version:
9393

9494
```xml
9595
<properties>
96-
<kotlin.version>1.9.21</kotlin.version>
96+
<kotlin.version>2.0.0</kotlin.version>
9797
</properties>
9898
```
9999

@@ -112,10 +112,10 @@ And make sure that you use the latest Kotlin version:
112112
```kotlin
113113
plugins {
114114
// For build.gradle.kts (Kotlin DSL)
115-
kotlin("jvm") version "1.9.21"
115+
kotlin("jvm") version "2.0.0"
116116

117117
// For build.gradle (Groovy DSL)
118-
id "org.jetbrains.kotlin.jvm" version "1.9.21"
118+
id "org.jetbrains.kotlin.jvm" version "2.0.0"
119119
}
120120
```
121121

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Kotlin
22
version=1.8.1-SNAPSHOT
33
group=org.jetbrains.kotlinx
4-
kotlin_version=2.0.0-RC3
4+
kotlin_version=2.0.0
55
kotlin_language_version=2.0
66
# DO NOT rename this property without adapting kotlinx.train build chain:
77
atomicfu_version=0.23.2

integration-testing/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
kotlin_version=2.0.0-RC3
1+
kotlin_version=2.0.0
22
coroutines_version=1.8.1-SNAPSHOT
33
asm_version=9.3
44

0 commit comments

Comments
 (0)