Browse Source

Support kotlin 1.9.20-Beta (#3656)

* Support kotlin 1.9.20-Beta

* Update VERSIONING.md

* Update VERSIONING.md
pull/3659/head
Oleksandr Karpovich 8 months ago committed by GitHub
parent
commit
7c43453b5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      VERSIONING.md
  2. 3
      gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposeCompilerCompatibility.kt

3
VERSIONING.md

@ -40,7 +40,8 @@ Kotlin version | Minimal Compose version | Notes
1.8.21 | 1.4.3
1.8.22 | 1.4.3
1.9.0 | 1.4.3
1.9.10 | 1.5.1
1.9.10 | 1.5.2
1.9.20-Beta | 1.5.2.1-Beta
### Using the latest Kotlin version

3
gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposeCompilerCompatibility.kt

@ -15,7 +15,8 @@ internal object ComposeCompilerCompatibility {
"1.9.0-Beta" to "1.4.7.1-beta",
"1.9.0-RC" to "1.4.8-beta",
"1.9.0" to "1.5.1",
"1.9.10" to "1.5.2"
"1.9.10" to "1.5.2",
"1.9.20-Beta" to "1.5.2.1-Beta"
)
fun compilerVersionFor(kotlinVersion: String): String {

Loading…
Cancel
Save