chore: increase version

This commit is contained in:
Kevin K 2017-03-22 20:29:40 -04:00
parent d49e8292b0
commit cc1985b6d8
No known key found for this signature in database
GPG key ID: 17218E4B3692F01A
3 changed files with 16 additions and 5 deletions

View file

@ -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)

View file

@ -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"

View file

@ -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