chore: increase version

This commit is contained in:
Kevin K 2017-03-16 21:50:26 -04:00
parent c84416f48d
commit 684aa99ee0
No known key found for this signature in database
GPG key ID: 17218E4B3692F01A
3 changed files with 21 additions and 1 deletions

View file

@ -1,3 +1,18 @@
<a name="v2.21.2"></a>
### v2.21.2 (2017-03-17)
#### Improvements
* options that use `require_equals(true)` now display the equals sign in help messages, usage strings, and errors" ([c8eb0384](https://github.com/kbknapp/clap-rs/commit/c8eb0384d394d2900ccdc1593099c97808a3fa05), closes [#903](https://github.com/kbknapp/clap-rs/issues/903))
#### Bug Fixes
* setting the max term width now correctly propagates down through child subcommands
<a name="v2.21.1"></a>
### v2.21.1 (2017-03-12)

View file

@ -1,7 +1,7 @@
[package]
name = "clap"
version = "2.21.1"
version = "2.21.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,6 +45,11 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
## What's New
Here's the highlights for v2.21.2
* 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
Here's the highlights for v2.21.1
* fixes the precedence of this error to prioritize over other error messages