Bump klib ABI version

KLIB forward compatibility was broken during work related to
definitely not-null types, but version was not changed. This led to
exceptions in compiler instead of meaningful error.

^KT-52518
This commit is contained in:
Pavel Kunyavskiy
2022-05-26 13:01:32 +02:00
committed by Space
parent a7f4981fe5
commit 76da9df102
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -126,7 +126,7 @@ rootProject.apply {
IdeVersionConfigurator.setCurrentIde(project)
if (!project.hasProperty("versions.kotlin-native")) {
extra["versions.kotlin-native"] = "1.7.20-dev-1094"
extra["versions.kotlin-native"] = "1.7.20-dev-1583"
}
val irCompilerModules = arrayOf(
@@ -60,6 +60,6 @@ data class KotlinAbiVersion(val major: Int, val minor: Int, val patch: Int) {
override fun toString() = "$major.$minor.$patch"
companion object {
val CURRENT = KotlinAbiVersion(1, 6, 0)
val CURRENT = KotlinAbiVersion(1, 7, 0)
}
}