Auto merge of #621 - kbknapp:v2.10.1, r=kbknapp

chore: increase version
This commit is contained in:
Homu 2016-08-21 13:51:29 +09:00
commit b4869959c6
3 changed files with 21 additions and 1 deletions

View file

@ -1,3 +1,17 @@
<a name="v2.10.1"></a>
### v2.10.1 (2016-08-21)
#### Bug Fixes
* **Help Subcommand:** fixes misleading usage string when using multi-level subcommmands ([e203515e](https://github.com/kbknapp/clap-rs/commit/e203515e3ac495b405dbba4f78fb6af148fd282e), closes [#618](https://github.com/kbknapp/clap-rs/issues/618))
#### Features
* **YAML:** allows using lists or single values with arg declarations ([9ade2cd4](https://github.com/kbknapp/clap-rs/commit/9ade2cd4b268d6d7fe828319ce6a523c641b9c38), closes [#614](https://github.com/kbknapp/clap-rs/issues/614), [#613](https://github.com/kbknapp/clap-rs/issues/613))
<a name="v2.10.0"></a>
## v2.10.0 (2016-07-29)

View file

@ -1,7 +1,7 @@
[package]
name = "clap"
version = "2.10.0"
version = "2.10.1"
authors = ["Kevin K. <kbknapp@gmail.com>"]
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
description = "A simple to use, efficient, and full featured Command Line Argument Parser"

View file

@ -39,6 +39,12 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
## What's New
Here's the highlights for v2.10.1
* **Help Subcommand:** fixes misleading usage string when using multi-level subcommmands such as `myprog help subcmd1 subcmd2`
* **YAML:** allows using lists or single values with certain arg declarations for increased ergonomics
Here's the highlights for v2.10.0