[IR] Bump ABI version due to string serialization format change

^KT-33175
This commit is contained in:
Dmitriy Dolovov
2021-04-06 12:52:11 +03:00
parent 8d4d9a1f0b
commit 4df5dcdf75
@@ -38,7 +38,7 @@ data class KotlinAbiVersion(val major: Int, val minor: Int, val patch: Int) {
private fun isCompatibleTo(ourVersion: KotlinAbiVersion): Boolean {
// Versions before 1.4.1 were the active development phase.
// 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
else
this == ourVersion