Set KotlinCompilerVersion.IS_PRE_RELEASE = false

Since master is 1.4.20 now and branch 1.4.0 is 1.4-RC

 #KT-39860 Fixed
This commit is contained in:
Mikhail Zarechenskiy
2020-06-26 12:30:19 +03:00
parent b5b5c8aebc
commit f37f89a151
@@ -19,7 +19,7 @@ public class KotlinCompilerVersion {
// Binaries produced by this compiler with that language version (or any future language version) are going to be marked
// as "pre-release" and will not be loaded by release versions of the compiler.
// Change this value before and after every major release
private static final boolean IS_PRE_RELEASE = true;
private static final boolean IS_PRE_RELEASE = false;
public static final String TEST_IS_PRE_RELEASE_SYSTEM_PROPERTY = "kotlin.test.is.pre.release";