Skip to content

Commit 85f9e31

Browse files
committed
Kotlin 1.3.20 release
1 parent 9ca0099 commit 85f9e31

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.1.2
2+
> Published 24 Jan 2019
3+
4+
* Compatible with Kotlin 1.3.20
5+
6+
17
# 0.1.1
28
> Published 29 Dec 2018
39

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
allprojects {
99
repositories {
10-
maven { url = uri(Kotlin.repo) }
10+
if (Kotlin.repo.isNotEmpty()) maven { url = uri(Kotlin.repo) }
1111
mavenCentral()
1212
}
1313
}

buildSrc/src/main/kotlin/Versions.kt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ object Publish {
1111
}
1212

1313
object Kotlin {
14-
const val version = "1.3.20-eap-100"
15-
const val repo = "https://dl.bintray.com/kotlin/kotlin-eap"
14+
const val version = "1.3.20"
15+
const val repo = ""
1616
}
1717

1818
object Libui {
@@ -29,7 +29,6 @@ object Download {
2929
}
3030

3131
object Bintray {
32-
const val version = "1.8.3-kotlin-a1"
33-
const val repo = "https://dl.bintray.com/touchlabpublic/kotlin"
32+
const val version = "1.8.4-jetbrains-5"
33+
const val repo = "https://dl.bintray.com/jetbrains/kotlin-native-dependencies"
3434
}
35-

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
kotlin.code.style=official
22

3-
VERSION_NAME=0.2.0
3+
VERSION_NAME=0.1.2
44
VERSION_SUFFIX=-dev
55
BINTRAY_REPO=kotlin-dev

libui/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
@file:Suppress("SpellCheckingInspection")
44

55
import com.jfrog.bintray.gradle.BintrayExtension
6-
import com.jfrog.bintray.gradle.BintrayUploadTask
76
import java.util.Date
87

98
plugins {

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pluginManagement {
1414
}
1515

1616
repositories {
17-
maven { url = uri(Kotlin.repo) }
17+
if (Kotlin.repo.isNotEmpty()) maven { url = uri(Kotlin.repo) }
1818
maven { url = uri(Bintray.repo) }
1919
mavenCentral()
2020
maven { url = uri("https://plugins.gradle.org/m2/") }

0 commit comments

Comments
 (0)