Skip to content

Commit d3c0ac2

Browse files
authored
Merge pull request #68 from joreilly/kotlin_2_rc1
Kotlin 2.0.0-RC1 + related dependencies
2 parents e3459b6 + 4a1a442 commit d3c0ac2

File tree

4 files changed

+460
-280
lines changed

4 files changed

+460
-280
lines changed

composeApp/build.gradle.kts

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
import org.jetbrains.compose.ExperimentalComposeLibrary
21
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
32
import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl
4-
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion.KOTLIN_1_9
3+
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion.KOTLIN_2_0
54

65
plugins {
76
alias(libs.plugins.kotlinMultiplatform)
@@ -46,7 +45,7 @@ kotlin {
4645
}
4746

4847
compilerOptions {
49-
languageVersion.set(KOTLIN_1_9)
48+
languageVersion.set(KOTLIN_2_0)
5049
}
5150

5251
sourceSets {

gradle/libs.versions.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ androidx-core-ktx = "1.12.0"
1010
androidx-espresso-core = "3.5.1"
1111
androidx-material = "1.11.0"
1212
androidx-test-junit = "1.1.5"
13-
compose = "1.6.2"
14-
compose-compiler = "1.5.6-dev2-kt2.0.0-Beta3"
15-
compose-plugin = "1.6.0"
13+
compose = "1.6.5"
14+
compose-compiler = "1.5.11-kt-2.0.0-RC1"
15+
compose-plugin = "1.6.2"
1616
composeWindowSize = "0.5.0"
17-
imageLoader = "1.7.7"
17+
imageLoader = "1.7.8"
1818
junit = "4.13.2"
19-
koalaplot = "0.5.1"
19+
koalaplot = "0.5.3"
2020
koin = "3.6.0-alpha3"
2121
koinCompose = "1.2.0-alpha3"
22-
kotlin = "2.0.0-Beta3"
22+
kotlin = "2.0.0-RC1"
2323
kotlinx-coroutines = "1.8.0"
24-
kmpNativeCoroutines = "1.0.0-ALPHA-24-kotlin-2.0.0-Beta3"
25-
kmmViewModel = "1.0.0-ALPHA-18-kotlin-2.0.0-Beta3"
26-
ksp = "2.0.0-Beta3-1.0.17"
24+
kmpNativeCoroutines = "1.0.0-ALPHA-28-kotlin-2.0.0-RC1"
25+
kmmViewModel = "1.0.0-ALPHA-20-kotlin-2.0.0-RC1"
26+
ksp = "2.0.0-RC1-1.0.20"
2727
ktor = "3.0.0-wasm2"
2828
treemapChart = "0.1.1"
2929
voyager= "1.1.0-alpha03"

0 commit comments

Comments
 (0)