[IR] Bump ABI version due to string serialization format change
^KT-33175
This commit is contained in:
@@ -38,7 +38,7 @@ data class KotlinAbiVersion(val major: Int, val minor: Int, val patch: Int) {
|
|||||||
private fun isCompatibleTo(ourVersion: KotlinAbiVersion): Boolean {
|
private fun isCompatibleTo(ourVersion: KotlinAbiVersion): Boolean {
|
||||||
// Versions before 1.4.1 were the active development phase.
|
// Versions before 1.4.1 were the active development phase.
|
||||||
// Starting with 1.4.1 we are trying to maintain some backward compatibility.
|
// Starting with 1.4.1 we are trying to maintain some backward compatibility.
|
||||||
return if (this.isAtLeast(1, 4, 1))
|
return if (this.isAtLeast(1, 5, 0))
|
||||||
major == ourVersion.major && minor <= ourVersion.minor
|
major == ourVersion.major && minor <= ourVersion.minor
|
||||||
else
|
else
|
||||||
this == ourVersion
|
this == ourVersion
|
||||||
|
|||||||
Reference in New Issue
Block a user