Update metadata version to 1.1.2 and bytecode version to 1.0.1

This is needed for the upcoming 1.1 EAP: it'll be easier to diagnose problems
arising from new language features and bytecode modifications
This commit is contained in:
Alexander Udalov
2016-06-15 16:27:46 +03:00
parent b4f81d4bb5
commit 02fd5371aa
2 changed files with 2 additions and 2 deletions
@@ -27,7 +27,7 @@ class JvmBytecodeBinaryVersion(vararg numbers: Int) : BinaryVersion(*numbers) {
companion object {
@JvmField
val INSTANCE = JvmBytecodeBinaryVersion(1, 0, 0)
val INSTANCE = JvmBytecodeBinaryVersion(1, 0, 1)
@JvmField
val INVALID_VERSION = JvmBytecodeBinaryVersion()
@@ -32,7 +32,7 @@ class JvmMetadataVersion(vararg numbers: Int) : BinaryVersion(*numbers) {
var skipCheck: Boolean = false
@JvmField
val INSTANCE = JvmMetadataVersion(1, 1, 1)
val INSTANCE = JvmMetadataVersion(1, 1, 2)
@JvmField
val INVALID_VERSION = JvmMetadataVersion()