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
@@ -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) {