chore: increase version

This commit is contained in:
Kevin K 2016-11-01 23:33:53 -04:00
parent 908d78eb82
commit 1118cc08fa
No known key found for this signature in database
GPG key ID: 17218E4B3692F01A
3 changed files with 16 additions and 2 deletions

View file

@ -1,3 +1,13 @@
<a name="v2.17.1"></a>
### v2.17.1 (2016-11-02)
#### Bug Fixes
* **Low Index Multiples:** fixes a bug where using low index multiples was propgated to subcommands ([33924e88](https://github.com/kbknapp/clap-rs/commit/33924e884461983c4e6b5ea1330fecc769a4ade7), closes [#725](https://github.com/kbknapp/clap-rs/issues/725))
<a name="v2.17.0"></a>
## v2.17.0 (2016-11-01)

View file

@ -1,7 +1,7 @@
[package]
name = "clap"
version = "2.17.0"
version = "2.17.1"
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

@ -41,9 +41,13 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
## What's New
Here's what's new in v2.17.1
* Fixes a bug where using low index multiples was propagated to subcommands
Here's what's new in v2.17.0
* Allows specifying the second to last positional argument as `multiple(true)` (i.e. things such as `mv <files>... <target>`)
* Allows specifying the second to last positional argument as `multiple(true)` (i.e. things such as `mv <files>... <target>`)
* Adds an `App::get_name` and `App::get_bin_name`
Here's what's new in v2.16.4