Skip to content

Commit 527200f

Browse files
committed
Update Kotlin version to 2.1.21 in samples
1 parent bd960f8 commit 527200f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

samples/ktor-all-platforms-app/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
kotlin = "2.1.20"
2+
kotlin = "2.1.21"
33

44
agp = "8.9.1"
55
android-compileSdk = "35"

samples/ktor-android-app/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
agp = "8.9.1"
3-
kotlin = "2.1.20"
3+
kotlin = "2.1.21"
44
androidx-activityCompose = "1.10.1"
55
androidx-appcompat = "1.7.0"
66
androidx-constraintlayout = "2.2.1"

samples/ktor-web-app/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
kotlin = "2.1.20"
2+
kotlin = "2.1.21"
33
kotlin-wrappers-bom = "2025.4.8"
44
ktor = "3.1.2"
55
kotlinx-serialization-json = "1.8.1"

samples/simple-ktor-app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
*/
44

55
plugins {
6-
kotlin("jvm") version "2.1.20"
7-
kotlin("plugin.serialization") version "2.1.20"
6+
kotlin("jvm") version "2.1.21"
7+
kotlin("plugin.serialization") version "2.1.21"
88
id("io.ktor.plugin") version "3.1.2"
99
id("org.jetbrains.kotlinx.rpc.plugin") version "0.7.0"
1010
}
@@ -40,5 +40,5 @@ dependencies {
4040
implementation("ch.qos.logback:logback-classic:1.5.18")
4141

4242
testImplementation("io.ktor:ktor-server-test-host")
43-
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:2.1.20")
43+
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:2.1.21")
4444
}

0 commit comments

Comments
 (0)