From 02b8dc4ad3a084f5a1215d7e396f9501226bfb30 Mon Sep 17 00:00:00 2001 From: Oleksandr Karpovich Date: Thu, 16 Nov 2023 20:23:05 +0100 Subject: [PATCH] Add kotlin 2.0.0-Beta1 to ComposeCompilerCompatibility (#3934) I decided to add the kotlin version name to the name of our artefact to make it more obvious. (cherry picked from commit ab34030a8782f66fb61ea6aa01b95e93186c8e1f) --- .../kotlin/org/jetbrains/compose/ComposeCompilerCompatibility.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposeCompilerCompatibility.kt b/gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposeCompilerCompatibility.kt index d2b7057a66e..ff780410383 100644 --- a/gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposeCompilerCompatibility.kt +++ b/gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposeCompilerCompatibility.kt @@ -21,6 +21,7 @@ internal object ComposeCompilerCompatibility { "1.9.20-RC" to "1.5.2.1-rc01", "1.9.20-RC2" to "1.5.3-rc01", "1.9.20" to "1.5.3", + "2.0.0-Beta1" to "1.5.4-dev1-kt2.0.0-Beta1", ) fun compilerVersionFor(kotlinVersion: String): String {