-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support kotlin 1.9.20-Beta2 #3721
Conversation
@@ -16,7 +16,8 @@ internal object ComposeCompilerCompatibility { | |||
"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.20-Beta" to "1.5.2.1-Beta2" | |||
"1.9.20-Beta" to "1.5.2.1-Beta2", | |||
"1.9.20-Beta2" to "1.5.2.1-Beta3" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the future, we should name compiler versions the same as we name main compose versions (-beta01, -beta02)
@@ -16,7 +16,8 @@ internal object ComposeCompilerCompatibility { | |||
"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.20-Beta" to "1.5.2.1-Beta2" | |||
"1.9.20-Beta" to "1.5.2.1-Beta2", | |||
"1.9.20-Beta2" to "1.5.2.1-Beta3" | |||
) | |||
|
|||
fun compilerVersionFor(kotlinVersion: String): String { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have a failed test. Does it fail before the change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll check.
This change doesn't affect the version of the plugin used in the tests. So it's likely a flaky test/environemnt.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rerun helped :|
(cherry picked from commit 393cfdd)
No description provided.