mirror of
https://github.com/clap-rs/clap
synced 2024-12-12 13:52:34 +00:00
chore: increase version
This commit is contained in:
parent
0e4fd96d74
commit
8bcc4d632c
3 changed files with 18 additions and 7 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,3 +1,13 @@
|
|||
<a name="v2.22.2"></a>
|
||||
### v2.22.2 (2017-03-30)
|
||||
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
* **Custom Usage Strings:** fixes the usage string regression when using help templates ([0e4fd96d](https://github.com/kbknapp/clap-rs/commit/0e4fd96d74280d306d09e60ac44f938a82321769))
|
||||
|
||||
|
||||
|
||||
<a name="v2.22.1"></a>
|
||||
### v2.22.1 (2017-03-24)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "clap"
|
||||
version = "2.22.1"
|
||||
version = "2.22.2"
|
||||
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
||||
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
|
||||
repository = "https://github.com/kbknapp/clap-rs.git"
|
||||
|
|
13
README.md
13
README.md
|
@ -45,15 +45,16 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
|
|||
|
||||
## What's New
|
||||
|
||||
Here's the highlights for v2.22.1
|
||||
Here's the highlights for v2.22.2
|
||||
|
||||
* **usage:** fixes a big regression with custom usage strings
|
||||
* fixes the usage string regression when using help templates
|
||||
|
||||
Here's the highlights for v2.21.0 to v2.22.0
|
||||
Here's the highlights for v2.21.0 to v2.22.1
|
||||
|
||||
* **App::name:** adds the ability to change the name of the App instance after creation
|
||||
* **Arg::hide_default_value:** adds ability to hide the default value of an argument from the help string
|
||||
* **yaml:** fixes support for loading author info from yaml
|
||||
* fixes a big regression with custom usage strings
|
||||
* adds the ability to change the name of the App instance after creation
|
||||
* adds ability to hide the default value of an argument from the help string
|
||||
* fixes support for loading author info from yaml
|
||||
* adds fish subcommand help support
|
||||
* options that use `require_equals(true)` now display the equals sign in help messages, usage strings, and errors
|
||||
* setting the max term width now correctly propagates down through child subcommands
|
||||
|
|
Loading…
Reference in a new issue