chore: increase version

This commit is contained in:
Kevin K 2016-10-23 19:36:51 -04:00
parent 3e36b0bac4
commit 0bf82e5448
No known key found for this signature in database
GPG key ID: 17218E4B3692F01A
3 changed files with 15 additions and 1 deletions

View file

@ -1,3 +1,13 @@
<a name="v2.16.0"></a>
## v2.16.0 (2016-10-23)
#### Features
* **Completions:** adds ZSH completion support ([3e36b0ba](https://github.com/kbknapp/clap-rs/commit/3e36b0bac491d3f6194aee14604caf7be26b3d56), closes [#699](https://github.com/kbknapp/clap-rs/issues/699))
<a name="v2.15.0"></a>
## v2.15.0 (2016-10-21)

View file

@ -1,7 +1,7 @@
[package]
name = "clap"
version = "2.15.0"
version = "2.16.0"
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,6 +41,10 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
## What's New
Here's the highlights for v2.16.0
* **Completions:** adds automatic ZSH completion script generation support! :tada: :tada:
Here's the highlights for v2.15.0
* **AppSettings:** adds new setting `AppSettings::AllowNegativeNumbers` which functions like `AllowLeadingHyphen` except only allows undefined negative numbers to pass parsing.