Skip to content

Commit

Permalink
Release version 4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ajalt committed Mar 27, 2024
1 parent 32bce94 commit 1da87c5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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")
}
```

Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down

0 comments on commit 1da87c5

Please sign in to comment.