Skip to content

Commit

Permalink
Kotlin 1.9.20
Browse files Browse the repository at this point in the history
  • Loading branch information
joreilly committed Oct 31, 2023
1 parent 49a29be commit 86d8f30
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 16 deletions.
3 changes: 1 addition & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,9 @@ allprojects {

eachDependency {
if (requested.module.name.startsWith("kotlin-stdlib")) {
useVersion("1.9.20-RC")
useVersion("1.9.20")
}
}
}
}
}

2 changes: 1 addition & 1 deletion compose-desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ application {

compose {
kotlinCompilerPlugin.set(libs.versions.jbComposeCompiler)
kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=1.9.20-RC")
kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=1.9.20")
}
2 changes: 1 addition & 1 deletion compose-ios/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -143,5 +143,5 @@ sqldelight {

compose {
kotlinCompilerPlugin.set(libs.versions.jbComposeCompiler)
kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=1.9.10")
kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=1.9.20")
}
4 changes: 2 additions & 2 deletions compose-web-wasm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ compose.experimental {
}

compose {
kotlinCompilerPlugin.set("1.5.2.1-rc01")
kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=1.9.20-RC")
kotlinCompilerPlugin.set("1.5.3")
kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=1.9.20")
}
20 changes: 10 additions & 10 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
[versions]
kotlin = "1.9.20-RC"
ksp = "1.9.20-RC-1.0.13"
kotlin = "1.9.20"
ksp = "1.9.20-RC2-1.0.13"
coroutines = "1.7.3"
kotlinxSerialization = "1.6.0"
kotlinxDateTime = "0.4.1"
androidGradlePlugin = "8.1.2"
koin = "3.4.3"
koinCompose = "3.4.6"
koin = "3.5.0"
koinCompose = "3.5.0"
ktor = "2.3.5"
slf4j = "2.0.9"
sqlDelight = "2.0.0"
kmpNativeCoroutines = "1.0.0-ALPHA-18"

androidxActivity = "1.8.0"
androidxComposeCompiler = "1.5.4-dev-k1.9.20-RC-1edce5fd625"
jbComposeCompiler = "1.5.2.1-rc01"
androidxComposeBom = "2023.10.00"
androidxComposeCompiler = "1.5.4-dev-k1.9.20-50f08dfa4b4"
jbComposeCompiler = "1.5.3"
androidxComposeBom = "2023.10.01"
androidxNavigationCompose = "2.7.4"
androidxLifecycle = "2.6.2"
imageLoader = "1.6.7"
imageLoader = "1.6.8"

composeMultiplatform = "1.5.1"
composeMultiplatform = "1.5.3"
accompanist = "0.32.0"
coilCompose = "2.4.0"
junit = "4.13.2"

multiplatformSettings = "1.0.0"
multiplatformSettings = "1.1.0"
kermit = "2.0.2"

gradleVersionsPlugin = "0.39.0"
Expand Down

0 comments on commit 86d8f30

Please sign in to comment.