Advance version to 1.4

This commit is contained in:
Nikolay Krasko
2019-12-18 13:32:05 +03:00
committed by Dmitriy Novozhilov
parent 55e97fee09
commit ca49672a7a
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import proguard.gradle.ProGuardTask
buildscript {
extra["defaultSnapshotVersion"] = "1.3-SNAPSHOT"
extra["defaultSnapshotVersion"] = "1.4-SNAPSHOT"
val cacheRedirectorEnabled = findProperty("cacheRedirectorEnabled")?.toString()?.toBoolean() == true
kotlinBootstrapFrom(BootstrapOption.BintrayBootstrap("1.3.70-dev-1806", cacheRedirectorEnabled))
@@ -263,7 +263,7 @@ enum class LanguageVersion(val major: Int, val minor: Int) : DescriptionAware {
val FIRST_SUPPORTED = KOTLIN_1_2
@JvmField
val LATEST_STABLE = KOTLIN_1_3
val LATEST_STABLE = KOTLIN_1_4
}
}
@@ -43,7 +43,7 @@ import org.jetbrains.kotlin.utils.ifEmpty
data class RepositoryDescription(val id: String, val name: String, val url: String, val bintrayUrl: String?, val isSnapshot: Boolean)
const val LAST_SNAPSHOT_VERSION = "1.3-SNAPSHOT"
const val LAST_SNAPSHOT_VERSION = "1.4-SNAPSHOT"
val SNAPSHOT_REPOSITORY = RepositoryDescription(
"sonatype.oss.snapshots",
+1 -1
View File
@@ -7,7 +7,7 @@
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-project</artifactId>
<version>1.3-SNAPSHOT</version>
<version>1.4-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Kotlin</name>
@@ -72,6 +72,6 @@ public class KotlinVersion(val major: Int, val minor: Int, val patch: Int) : Com
* Returns the current version of the Kotlin standard library.
*/
@kotlin.jvm.JvmField
public val CURRENT: KotlinVersion = KotlinVersion(1, 3, 0) // value is written here automatically during build
public val CURRENT: KotlinVersion = KotlinVersion(1, 4, 0) // value is written here automatically during build
}
}