Advance JvmMetadataVersion to 1.1.4, change IS_PRE_RELEASE to false

Kotlin 1.1 is no longer considered a pre-release
This commit is contained in:
Alexander Udalov
2017-01-30 14:45:40 +03:00
parent 1025fe9307
commit 268d10d3f0
2 changed files with 2 additions and 2 deletions
@@ -32,7 +32,7 @@ class JvmMetadataVersion(vararg numbers: Int) : BinaryVersion(*numbers) {
var skipCheck: Boolean = false
@JvmField
val INSTANCE = JvmMetadataVersion(1, 1, 3)
val INSTANCE = JvmMetadataVersion(1, 1, 4)
@JvmField
val INVALID_VERSION = JvmMetadataVersion()
@@ -24,7 +24,7 @@ public class KotlinCompilerVersion {
// True if this compiler is of a non-stable (EAP or Beta) version.
// Binaries produced by this compiler can not be loaded by release versions of the compiler.
// Change this value before and after every major release
public static final boolean IS_PRE_RELEASE = true;
public static final boolean IS_PRE_RELEASE = false;
static {
if (!VERSION.equals("@snapshot@") && !VERSION.contains("-") && IS_PRE_RELEASE) {