Apologies if this has been asked before. I see tha...
# coroutines
s
Apologies if this has been asked before. I see that Coroutines
1.9.0
are now compiled with
Kotlin 2.0
. Is it safe to consume that library within a project that uses
1.9.23
?
j
I'm not sure if it can be a problem for you, but it will transitively bring the standard library 2.0.0. The language-level itself shouldn't be a problem I think.
d
On the JVM, it should be safe. On other platforms, it probably isn't. See https://kotlinlang.org/docs/kotlin-evolution-principles.html#evolving-the-binary-format
s
Thank you Joffrey and Dmitry!