Skip to content

Commit a2af0d9

Browse files
authored
Update Kotlin to 2.2.0-RC (#4588)
1 parent 3a1a69c commit a2af0d9

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

documentation/src/docs/asciidoc/release-notes/release-notes-6.0.0-M1.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ repository on GitHub.
2121
[[release-notes-6.0.0-M1-overall-deprecations-and-breaking-changes]]
2222
==== Deprecations and Breaking Changes
2323

24-
* Minimum required Java version is now Java 17.
24+
* Minimum required Java version is now 17.
25+
* Minimum required Kotlin version is now 2.2.
2526
* Platform, Jupiter, and Vintage artifacts now use the same version number.
2627

2728
[[release-notes-6.0.0-M1-overall-new-features-and-improvements]]

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ gitPublish = { id = "org.ajoberstar.git-publish", version = "5.1.1" }
105105
jmh = { id = "me.champeau.jmh", version = "0.7.3" }
106106
jreleaser = { id = "org.jreleaser", version = "1.18.0" }
107107
# check if workaround in gradle.properties can be removed when updating
108-
kotlin = { id = "org.jetbrains.kotlin.jvm", version = "2.1.21" }
108+
kotlin = { id = "org.jetbrains.kotlin.jvm", version = "2.2.0-RC" }
109109
nullaway = { id = "net.ltgt.nullaway", version = "2.2.0" }
110110
openrewrite = { id = "org.openrewrite.rewrite", version = "7.6.2" }
111111
plantuml = { id = "io.freefair.plantuml", version = "8.13.1" }

platform-tooling-support-tests/projects/gradle-kotlin-extensions/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17
33
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion.KOTLIN_2_1
44

55
plugins {
6-
kotlin("jvm") version "2.1.21"
6+
kotlin("jvm") version "2.2.0-RC"
77
}
88

99
repositories {

platform-tooling-support-tests/projects/kotlin-coroutines/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
kotlin("jvm") version "2.1.21"
2+
kotlin("jvm") version "2.2.0-RC"
33
}
44

55
val junitVersion: String by project

0 commit comments

Comments
 (0)