Skip to content

Commit 2788557

Browse files
committed
Release version 2.2.0
1 parent 576ff37 commit 2788557

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
## [Unreleased]
4+
5+
## [2.2.0] - 2019-09-25
46
### Added
57
- Added `enum()` conversion for options and arguments. ([#84](https://github.com/ajalt/clikt/issues/84))
68

@@ -9,9 +11,9 @@
911

1012
### Fixed
1113
- Help output missing items when no help text is specified. ([#85](https://github.com/ajalt/clikt/issues/85))
12-
- Help output not grouping option in groups passed to `groupChoice`. ([#88](https://github.com/ajalt/clikt/issues/88))
14+
- Help output not grouping options in groups passed to `groupChoice`. ([#88](https://github.com/ajalt/clikt/issues/88))
1315

14-
## [2.1.0] - 2019-05-23
16+
## [2.1.0] - 2019-05-23
1517
### Added
1618
- Ability to prevent [rewrapping individual paragraphs](https://ajalt.github.io/clikt/documenting/#preventing-rewrapping) in help output.
1719
- Added parameter `required` to `Option.multiple()` to require at least one instance of the option on the command line.
@@ -22,7 +24,7 @@
2224
### Fixed
2325
- Create subcommand context when `helpOptionNames` is empty. ([#64](https://github.com/ajalt/clikt/issues/64))
2426

25-
## [2.0.0] - 2019-05-12
27+
## [2.0.0] - 2019-05-12
2628
### Added
2729
- [Bash autocomplete script generation](https://ajalt.github.io/clikt/autocomplete/). A property named `completionCandidates` has been added to `Argument` and `Option` interfaces, and corresponding parameters have been added to the various implementation constructors, as well as the `convert` functions. You can use this to control the values autocomplete that will be suggested.
2830
- [`option().split()`](https://ajalt.github.io/clikt/api/clikt/com.github.ajalt.clikt.parameters.options/split/), and the corresponding [`OptionWithValues.valueSplit`](https://ajalt.github.io/clikt/api/clikt/com.github.ajalt.clikt.parameters.options/-option-with-values/value-split/).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Clikt is distributed through
8282

8383
```groovy
8484
dependencies {
85-
implementation 'com.github.ajalt:clikt:2.1.0'
85+
implementation 'com.github.ajalt:clikt:2.2.0'
8686
}
8787
```
8888

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
GROUP=com.github.ajalt
2-
VERSION_NAME=2.1.0
2+
VERSION_NAME=2.2.0

0 commit comments

Comments
 (0)