From df70736ef0673d83685617dbf461668f02772950 Mon Sep 17 00:00:00 2001 From: AJ Date: Sun, 1 Dec 2024 10:34:25 -0800 Subject: [PATCH] Release version 5.0.2 --- CHANGELOG.md | 3 +++ README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54406576..e7f03d2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog ## Unreleased +## 5.0.2 +### Changed +- Update Kotlin to 2.1.0 ## 5.0.1 ### Added diff --git a/README.md b/README.md index 041a842d..21314071 100644 --- a/README.md +++ b/README.md @@ -60,10 +60,10 @@ Clikt is distributed through [Maven Central](https://search.maven.org/artifact/c ```kotlin dependencies { - implementation("com.github.ajalt.clikt:clikt:5.0.1") + implementation("com.github.ajalt.clikt:clikt:5.0.2") // optional support for rendering markdown in help messages - implementation("com.github.ajalt.clikt:clikt-markdown:5.0.1") + implementation("com.github.ajalt.clikt:clikt-markdown:5.0.2") } ``` diff --git a/gradle.properties b/gradle.properties index e9bf8482..f6b2a914 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=5.0.1 +VERSION_NAME=5.0.2 # Silence the compile warning that MPP is experimental kotlin.mpp.stability.nowarn=true