From 47da04a51124cae5b52733e736a0d1d7b20b9a93 Mon Sep 17 00:00:00 2001 From: AJ Date: Sat, 12 Dec 2020 09:14:03 -0800 Subject: [PATCH] Update Kotlin to 1.4.21 --- CHANGELOG.md | 2 +- build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3c54e4c3..200b57c22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ - Added `CompletionCommand` and `CliktCommand.completionOption()` that will print an autocomplete script when invoked, as an alternative to using environment variables. ### Changed -- Updated Kotlin to 1.4.20 +- Updated Kotlin to 1.4.21 - `@argfiles` now allow line breaks in quoted values, which are included in the value verbatim. You can now end lines with `\` to concatenate them with the follwing line. ([#248](https://github.com/ajalt/clikt/issues/248)) ## 3.0.1 diff --git a/build.gradle.kts b/build.gradle.kts index e4311a812..e89f5018b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -3,7 +3,7 @@ import java.io.ByteArrayOutputStream val VERSION_NAME: String by project plugins { - kotlin("jvm").version("1.4.20") + kotlin("jvm").version("1.4.21") id("org.jetbrains.dokka").version("0.10.1") }