mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 14:22:34 +00:00
chore: increase version
This commit is contained in:
parent
df06ea61ee
commit
c28d093076
3 changed files with 27 additions and 1 deletions
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -1,3 +1,21 @@
|
||||||
|
<a name="v2.11.1"></a>
|
||||||
|
### v2.11.1 (2016-09-05)
|
||||||
|
|
||||||
|
|
||||||
|
#### Bug Fixes
|
||||||
|
|
||||||
|
* **Settings:** fixes an issue where settings weren't propogated down through grand-child subcommands ([b3efc107](https://github.com/kbknapp/clap-rs/commit/b3efc107515d78517b20798ff3890b8a2b04498e), closes [#638](https://github.com/kbknapp/clap-rs/issues/638))
|
||||||
|
|
||||||
|
#### Features
|
||||||
|
|
||||||
|
* **Errors:** Errors with custom description ([58512f2f](https://github.com/kbknapp/clap-rs/commit/58512f2fcb430745f1ee6ee8f1c67f62dc216c73))
|
||||||
|
|
||||||
|
#### Improvements
|
||||||
|
|
||||||
|
* **help:** use term_size instead of home-grown solution ([fc7327e9](https://github.com/kbknapp/clap-rs/commit/fc7327e9dcf4258ef2baebf0a8714d9c0622855b))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a name="v2.11.0"></a>
|
<a name="v2.11.0"></a>
|
||||||
### v2.11.0 (2016-08-28)
|
### v2.11.0 (2016-08-28)
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
|
|
||||||
name = "clap"
|
name = "clap"
|
||||||
version = "2.11.0"
|
version = "2.11.1"
|
||||||
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
||||||
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
|
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
|
||||||
repository = "https://github.com/kbknapp/clap-rs.git"
|
repository = "https://github.com/kbknapp/clap-rs.git"
|
||||||
|
|
|
@ -39,6 +39,14 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
|
||||||
|
|
||||||
## What's New
|
## What's New
|
||||||
|
|
||||||
|
Here's the highlights for v2.11.1
|
||||||
|
|
||||||
|
* Fixes an issue where settings weren't propogated down through grand-child subcommands
|
||||||
|
* Errors can now have custom description
|
||||||
|
* Uses `term_size` instead of home-grown solution on Windows
|
||||||
|
* Updates deps with some minor bug fixes
|
||||||
|
|
||||||
|
|
||||||
Here's the highlights for v2.11.0
|
Here's the highlights for v2.11.0
|
||||||
|
|
||||||
* Adds the ability to wrap help text intelligently on Windows!
|
* Adds the ability to wrap help text intelligently on Windows!
|
||||||
|
|
Loading…
Reference in a new issue