diff --git a/CHANGELOG.md b/CHANGELOG.md index 462623ab..54406576 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## Unreleased + +## 5.0.1 ### Added - Added completion commands for suspending and chained commands. ([#553](https://github.com/ajalt/clikt/pull/553)) - Added no-op suspending commands. ([#554](https://github.com/ajalt/clikt/pull/554)) diff --git a/README.md b/README.md index b19aadff..041a842d 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.0") + implementation("com.github.ajalt.clikt:clikt:5.0.1") // optional support for rendering markdown in help messages - implementation("com.github.ajalt.clikt:clikt-markdown:5.0.0") + implementation("com.github.ajalt.clikt:clikt-markdown:5.0.1") } ``` diff --git a/docs/migration.md b/docs/migration.md index 54ee09dc..cc0a35b5 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -1,7 +1,7 @@ # Upgrading to Newer Releases -See the [changelog] for a full list of changes in each release. This guide contains information on -the most significant changes that may require updating to your code. +See the [changelog](changelog.md) for a full list of changes in each release. This guide contains +information on the most significant changes that may require updating to your code. ## Upgrading to 5.0 diff --git a/gradle.properties b/gradle.properties index 39dfe91a..713a707b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=5.0.0 +VERSION_NAME=5.0.1 # Silence the compile warning that MPP is experimental kotlin.mpp.stability.nowarn=true