Skip to content

Commit 85840fa

Browse files
authored
Merge branch 'master' into update-readme-1212
2 parents ad50785 + df33faf commit 85840fa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
-->
1313
## Master
1414
- Update README.md with guidance to enable auto-complete in Android Studio [@gianluz] - [#242](https://github.com/danger/kotlin/pull/242)
15+
- Update install script with Kotlin compiler 1.7.0 [@gianluz] - [#241](https://github.com/danger/kotlin/pull/241)
1516

1617
# 1.2.0
1718
- Update `Kotlin` to `1.7.0` and added support for Apple Silicon Chipset [@gianluz] - [#231](https://github.com/danger/kotlin/pull/231)

scripts/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ if [[ -n "$sudo" && "$OSTYPE" != "darwin"* ]]; then
3131
fi
3232

3333
if ! [[ -x "$(command -v kotlinc)" ]]; then
34-
echo "Installing kotlin compiler 1.4.31"
35-
curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v1.4.31/kotlin-compiler-1.4.31.zip
34+
echo "Installing kotlin compiler 1.7.0"
35+
curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v1.7.0/kotlin-compiler-1.7.0.zip
3636
unzip -d /usr/local/ kotlin-compiler.zip
3737
echo 'export PATH=/usr/local/kotlinc/bin:$PATH' >> ~/.bash_profile
3838
rm -rf kotlin-compiler.zip

0 commit comments

Comments
 (0)