is kotlin coroutine 1.10 compatible with kotlin 2....
# coroutines
d
is kotlin coroutine 1.10 compatible with kotlin 2.0? it says
• Kotlin was updated to 2.1.0 (#4284).
but does that mean it requires 2.1 or can support it? (my guess is the former via a gradle dependency but I want to confirm.)
k
If you’re using Kotlin native, Kotlin < 2.1.0 won’t be able to consume it. There was a forwards incompatible change in K/N 2.1.0
d
Kotlin JVM
k
Kotlin JVM should be fine. Not sure about others, though
thank you color 1