Skip to content

Commit c1bb88f

Browse files
authored
Merge pull request #160 from danger/update-kotlin-1.4.31
Update Kotlin version to 1.4.31
2 parents a7d794f + 9d66728 commit c1bb88f

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- name: Install Kotlin
2222
run: |
23-
curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v1.4.20/kotlin-compiler-1.4.20.zip
23+
curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v1.4.31/kotlin-compiler-1.4.31.zip
2424
2525
if [[ "$OSTYPE" != "darwin"* ]]
2626
then

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
- Road to 1.0 - Migrate from java.util.Date to kotlinx.datetime [@gianluz] - [#147](https://github.com/danger/kotlin/pull/147)
2424
- Fix typo in Github Milestone serialization [@doodeec] - [#151](https://github.com/danger/kotlin/pull/151)
2525
- Use fixed commit of danger/kotlin repository in install.sh script [@davidbilik]- [#152](https://github.com/danger/kotlin/pull/152)
26+
- Update Kotlin to 1.4.31 [@gianluz] - [#160](https://github.com/danger/kotlin/pull/160)
2627

2728
# 0.7.1
2829

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.20/kotlin-compiler-1.4.20.zip && \
18+
wget -q https://github.com/JetBrains/kotlin/releases/download/v1.4.31/kotlin-compiler-1.4.31.zip && \
1919
unzip kotlin-compiler-*.zip && \
2020
rm kotlin-compiler-*.zip && \
2121
cd /usr/local/_danger-kotlin && \

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.20'
23+
project.ext.versionKotlin = '1.4.31'
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.20
1+
kotlinVersion=1.4.31
22
kotlin.code.style=official
33
systemProp.org.gradle.internal.publish.checksums.insecure=true

scripts/install.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ if [[ -n "$sudo" && "$OSTYPE" != "darwin"* ]]; then
2222
fi
2323

2424
if ! [[ -x "$(command -v kotlinc)" ]]; then
25-
echo "Installing kotlin compiler 1.4.20"
26-
curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v1.4.20/kotlin-compiler-1.4.20.zip
25+
echo "Installing kotlin compiler 1.4.31"
26+
curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v1.4.31/kotlin-compiler-1.4.31.zip
2727
unzip -d /usr/local/ kotlin-compiler.zip
2828
echo 'export PATH=/usr/local/kotlinc/bin:$PATH' >> ~/.bash_profile
2929
rm -rf kotlin-compiler.zip

0 commit comments

Comments
 (0)