From 1da87c57af7e33c94d5943916ea5e13d01fe04b2 Mon Sep 17 00:00:00 2001 From: AJ Date: Wed, 27 Mar 2024 16:11:42 -0700 Subject: [PATCH] Release version 4.3.0 --- CHANGELOG.md | 6 ++++-- README.md | 2 +- gradle.properties | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0a0ab62..6fe1a9d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,15 @@ # Changelog ## Unreleased + +## 4.3.0 ### Added - Added `limit` parameter to `option().counted()` to limit the number of times the option can be used. You can either clamp the value to the limit, or throw an error if the limit is exceeded. ([#483](https://github.com/ajalt/clikt/issues/483)) - Added `Context.registerClosable` and `Context.callOnClose` to allow you to register cleanup actions that will be called when the command exits. ([#395](https://github.com/ajalt/clikt/issues/395)) ### Fixed -- Fixed `unrecognized modifier 'i'` that happened on tab-completion when using sub command aliases ([#500](https://github.com/ajalt/clikt/pull/500)) -- Make sure auto complete script works on zsh, fixing the error `complete:13: command not found: compdef` ([#499](https://github.com/ajalt/clikt/pull/499)) +- Fixed `unrecognized modifier 'i'` that happened on tab-completion when using sub command aliases. Thanks to @hick209 for the contribution. ([#500](https://github.com/ajalt/clikt/pull/500)) +- Make sure auto complete script works on zsh, fixing the error `complete:13: command not found: compdef`. Thanks to @hick209 for the contribution. ([#499](https://github.com/ajalt/clikt/pull/499)) ## 4.2.2 ### Changed diff --git a/README.md b/README.md index 1ebc95a6..160fd7f7 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.2.2") + implementation("com.github.ajalt.clikt:clikt:4.3.0") } ``` diff --git a/gradle.properties b/gradle.properties index a0150cb8..6f39ea45 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=4.2.2 +VERSION_NAME=4.3.0 # Silence the compile warning that MPP is experimental kotlin.mpp.stability.nowarn=true