mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
chore: increase version
This commit is contained in:
parent
908d78eb82
commit
1118cc08fa
3 changed files with 16 additions and 2 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -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)
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue