chore: increase version

This commit is contained in:
Kevin K 2016-10-21 13:28:24 -04:00
parent 8735e3511d
commit e1ad987be3
No known key found for this signature in database
GPG key ID: 17218E4B3692F01A
3 changed files with 19 additions and 1 deletions

View file

@ -1,3 +1,16 @@
<a name="v2.15.0"></a>
## v2.15.0 (2016-10-21)
#### Features
* **AppSettings:** adds new setting `AppSettings::AllowNegativeNumbers` ([ab064546](https://github.com/kbknapp/clap-rs/commit/ab06454677fb6aa9b9f804644fcca2168b1eaee3), closes [#696](https://github.com/kbknapp/clap-rs/issues/696))
#### Documentation
* **app/settings.rs:** moves variants to roughly alphabetical order ([9ed4d4d7](https://github.com/kbknapp/clap-rs/commit/9ed4d4d7957a23357aef60081e45639ab9e3905f))
<a name="v2.14.1"></a>
### v2.14.1 (2016-10-20)

View file

@ -1,7 +1,7 @@
[package]
name = "clap"
version = "2.14.1"
version = "2.15.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,11 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
## What's New
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.
* Improves some of the documentation of `AppSettings` by moving variants into roughly alphabetical order
Here's the highlights for v2.14.1 (Huge thanks to all the contributors who put in a lot of work this cycle! Especially @tormol @nabijaczleweli and @wdv4758h)
* Stabilize `clap_app!` macro (i.e. no longer need to use `unstable` feature)