Skip to content

Commit 7df8d62

Browse files
authored
Merge pull request #171 from danger/upgrade-kotlin-1.5
2 parents 929aab6 + 306944c commit 7df8d62

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
- Update kotlinx-datetime to 0.1.1 [@f-meloni] - [@gianluz] - [#167](https://github.com/danger/kotlin/pull/167)
1616
- Support GitLab different time zones on the JSON [@f-meloni] - [#169](https://github.com/danger/kotlin/pull/169)
17+
- Update Kotlin to 1.5.0 [@gianluz] - [#171](https://github.com/danger/kotlin/pull/171)
1718

1819
# 1.0.0-beta
1920

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - && \
1515
# Install danger-kotlin globally
1616
COPY . /usr/local/_danger-kotlin
1717
RUN cd /usr/lib && \
18-
wget -q https://github.com/JetBrains/kotlin/releases/download/v1.4.31/kotlin-compiler-1.4.31.zip && \
18+
wget -q https://github.com/JetBrains/kotlin/releases/download/v1.5.0/kotlin-compiler-1.5.0.zip && \
1919
unzip kotlin-compiler-*.zip && \
2020
rm kotlin-compiler-*.zip && \
2121
cd /usr/local/_danger-kotlin && \

danger-kotlin-sample-plugin/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010

1111
plugins {
12-
id 'org.jetbrains.kotlin.jvm' version '1.4.31'
12+
id 'org.jetbrains.kotlin.jvm' version '1.5.0'
1313
}
1414

1515
apply plugin: 'danger-kotlin-plugin-installer'

dependencyVersions.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ project.ext.groupIdOkio = 'com.squareup.okio'
2020
project.ext.artifactIdOkio = 'okio'
2121

2222
// Kotlin
23-
project.ext.versionKotlin = '1.4.31'
23+
project.ext.versionKotlin = '1.5.0'
2424
project.ext.groupIdKotlin = 'org.jetbrains.kotlin'
2525
project.ext.groupIdKotlinx = 'org.jetbrains.kotlinx'
2626
project.ext.artifactIdKotlinMain = 'kotlin-main-kts'

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
kotlinVersion=1.4.31
1+
kotlinVersion=1.5.0
22
kotlin.code.style=official
33
systemProp.org.gradle.internal.publish.checksums.insecure=true

0 commit comments

Comments
 (0)