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:
+1
-1
@@ -126,7 +126,7 @@ rootProject.apply {
|
|||||||
IdeVersionConfigurator.setCurrentIde(project)
|
IdeVersionConfigurator.setCurrentIde(project)
|
||||||
|
|
||||||
if (!project.hasProperty("versions.kotlin-native")) {
|
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(
|
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"
|
override fun toString() = "$major.$minor.$patch"
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
val CURRENT = KotlinAbiVersion(1, 6, 0)
|
val CURRENT = KotlinAbiVersion(1, 7, 0)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user