Skip to content

Commit

Permalink
Support kotlin 1.9.10 (#3616)
Browse files Browse the repository at this point in the history
* Support kotlin 1.9.10

* Update gradle.properties

(cherry picked from commit 1d73c79)
  • Loading branch information
eymar committed Sep 6, 2023
1 parent 904bd6f commit 87632cd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ internal object ComposeCompilerCompatibility {
"1.8.22" to "1.4.8",
"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.0" to "1.5.1",
"1.9.10" to "1.5.2"
)

fun compilerVersionFor(kotlinVersion: String): String {
Expand Down
6 changes: 3 additions & 3 deletions gradle-plugins/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ kotlin.code.style=official
# Default version of Compose Libraries used by Gradle plugin
compose.version=1.5.0-dev1122
# The latest version of Compose Compiler used by Gradle plugin. Used only in tests/CI.
compose.tests.compiler.version=1.5.1
compose.tests.compiler.version=1.5.2
# The latest version of Kotlin compatible with compose.tests.compiler.version. Used only in tests/CI.
compose.tests.compiler.compatible.kotlin.version=1.9.0
compose.tests.compiler.compatible.kotlin.version=1.9.10
# The latest version of Kotlin compatible with compose.tests.compiler.version for JS target. Used only on CI.
compose.tests.js.compiler.compatible.kotlin.version=1.9.0
compose.tests.js.compiler.compatible.kotlin.version=1.9.10
# __SUPPORTED_GRADLE_VERSIONS__
compose.tests.gradle.versions=7.3.3, 8.1

Expand Down

0 comments on commit 87632cd

Please sign in to comment.