Skip to content

Commit 1da87c5

Browse files
committed
Release version 4.3.0
1 parent 32bce94 commit 1da87c5

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# Changelog
22

33
## Unreleased
4+
5+
## 4.3.0
46
### Added
57
- 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))
68
- 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))
79

810
### Fixed
9-
- Fixed `unrecognized modifier 'i'` that happened on tab-completion when using sub command aliases ([#500](https://github.com/ajalt/clikt/pull/500))
10-
- 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))
11+
- 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))
12+
- 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))
1113

1214
## 4.2.2
1315
### Changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Clikt is distributed through [Maven Central](https://search.maven.org/artifact/c
6060

6161
```groovy
6262
dependencies {
63-
implementation("com.github.ajalt.clikt:clikt:4.2.2")
63+
implementation("com.github.ajalt.clikt:clikt:4.3.0")
6464
}
6565
```
6666

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=4.2.2
1+
VERSION_NAME=4.3.0
22

33
# Silence the compile warning that MPP is experimental
44
kotlin.mpp.stability.nowarn=true

0 commit comments

Comments
 (0)