chore: increase version

This commit is contained in:
Kevin K 2017-03-30 13:35:36 -04:00
parent 0e4fd96d74
commit 8bcc4d632c
3 changed files with 18 additions and 7 deletions

View file

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

View file

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

View file

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