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

This reverts commit 4df5dcdf
This commit is contained in:
Dmitriy Dolovov
2021-04-08 09:43:32 +03:00
parent 9af1de272e
commit 1fa0ba987b
@@ -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, 5, 0))
return if (this.isAtLeast(1, 4, 1))
major == ourVersion.major && minor <= ourVersion.minor
else
this == ourVersion