Skip to content

Commit

Permalink
Support Kotlin 1.8.20 (#3000)
Browse files Browse the repository at this point in the history
* Support Kotlin 1.8.20

* Use Compiler 1.4.5-rc01 for Gradle tests

* Update ComposeCompilerCompatibility.kt
  • Loading branch information
igordmn committed Apr 6, 2023
1 parent 08d5fa3 commit 1fbeced
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ internal object ComposeCompilerCompatibility {
"1.7.20" to "1.3.2.2",
"1.8.0" to "1.4.0",
"1.8.10" to "1.4.2",
"1.8.20" to "1.4.5-rc02",
)

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.3.1
# The latest version of Compose Compiler used by Gradle plugin. Used only in tests/CI.
compose.tests.compiler.version=1.4.2
compose.tests.compiler.version=1.4.5-rc01
# The latest version of Kotlin compatible with compose.tests.compiler.version. Used only in tests/CI.
compose.tests.compiler.compatible.kotlin.version=1.8.10
compose.tests.compiler.compatible.kotlin.version=1.8.20
# 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.8.10
compose.tests.js.compiler.compatible.kotlin.version=1.8.20
# __SUPPORTED_GRADLE_VERSIONS__
compose.tests.gradle.versions=7.0.2, 8.0-rc-1

Expand Down

0 comments on commit 1fbeced

Please sign in to comment.