If I set my `kotlinCompilerExtensionVersion` to `1...
# compose
c
If I set my
kotlinCompilerExtensionVersion
to
1.4.21-2
should I also set all of the other kotlin versions to the same thing? i.e. kotlin-stdlib, etc? I feel like I never heard about this -2 release of kotlin
e
https://github.com/JetBrains/kotlin/compare/v1.4.21...v1.4.21-2 the only difference from 1.4.21 to 1.4.21-2 is a fix in the compiler to resolve a kotlinx.serialization + Jetpack Compose compatibility issue
unless that affects you, it doesn't matter which version you use
c
Thanks. I wasn't sure if I could mis-match versions
e
in general, I believe the stdlib/jvm's stability guarantees should allow for any 1.4.x mix, but that is not necessarily true for other parts of kotlin
👍 1