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
c84416f48d
commit
684aa99ee0
3 changed files with 21 additions and 1 deletions
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -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)
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue