diff --git a/CHANGELOG.md b/CHANGELOG.md index bc2fdde0..88350eeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 4.1.0 ### Added - Added `MordantHelpFormatter.renderAttachedOptionValue` that you can override to change how option values are shown, e.g. if you want option to show as `--option ` instead of `--option=`. ([#416](https://github.com/ajalt/clikt/issues/416)) - Added `option().optionalValueLazy{}`, which work like `optionalValue()` but the default value is computed lazily. ([#381](https://github.com/ajalt/clikt/issues/381)) diff --git a/README.md b/README.md index 708a277b..f5caa7e1 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Clikt is distributed through [Maven Central](https://search.maven.org/artifact/c ```groovy dependencies { - implementation("com.github.ajalt.clikt:clikt:4.0.0") + implementation("com.github.ajalt.clikt:clikt:4.1.0") } ``` diff --git a/gradle.properties b/gradle.properties index aa93ce85..11a97772 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=4.0.0 +VERSION_NAME=4.1.0 # Silence the compile warning that MPP is experimental kotlin.mpp.stability.nowarn=true