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
d49e8292b0
commit
cc1985b6d8
3 changed files with 16 additions and 5 deletions
|
@ -1,3 +1,12 @@
|
|||
<a name="v2.22.0"></a>
|
||||
## v2.22.0 (2017-03-23)
|
||||
|
||||
#### API Additions
|
||||
|
||||
* **App::name:** adds the ability to change the name of the App instance after creation ([d49e8292](https://github.com/kbknapp/clap-rs/commit/d49e8292b026b06e2b70447cd9f08299f4fcba76), closes [#908](https://github.com/kbknapp/clap-rs/issues/908))
|
||||
* **Arg::hide_default_value:** adds ability to hide the default value of an argument from the help string ([89e6ea86](https://github.com/kbknapp/clap-rs/commit/89e6ea861e16a1ad56757ca12f6b32d02253e44a), closes [#902](https://github.com/kbknapp/clap-rs/issues/902))
|
||||
|
||||
|
||||
<a name="v2.21.3"></a>
|
||||
### v2.21.3 (2017-03-23)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "clap"
|
||||
version = "2.21.3"
|
||||
version = "2.22.0"
|
||||
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
||||
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
|
||||
repository = "https://github.com/kbknapp/clap-rs.git"
|
||||
|
|
10
README.md
10
README.md
|
@ -45,12 +45,14 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
|
|||
|
||||
## What's New
|
||||
|
||||
Here's the highlights for v2.21.3
|
||||
Here's the highlights for v2.22.0
|
||||
|
||||
* **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
|
||||
|
||||
Here's the highlights for v2.21.0 to v2.21.3
|
||||
|
||||
* **yaml:** fixes support for loading author info from yaml
|
||||
|
||||
Here's the highlights for v2.21.0 to v2.21.2
|
||||
|
||||
* 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