chore: increase version

This commit is contained in:
Kevin K 2017-04-05 10:50:35 -04:00
parent 6aa4ba8114
commit 6095f239ba
3 changed files with 12 additions and 2 deletions

View file

@ -1,3 +1,12 @@
<a name="v2.23.1"></a>
### v2.23.1 (2017-04-05)
#### Bug Fixes
* fixes a missing newline character in the autogenerated help and version messages in some instances ([5ae9007d](https://github.com/kbknapp/clap-rs/commit/5ae9007d984ae94ae2752df51bcbaeb0ec89bc15))
<a name="v2.23.0"></a>
## v2.23.0 (2017-04-05)

View file

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

@ -45,8 +45,9 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
## What's New
Here's the highlights for v2.23.0
Here's the highlights for v2.23.1
* fixes a missing newline character in the autogenerated help and version messages in some instances
* allows specifying a short help vs a long help (i.e. varying levels of detail depending on if -h or --help was used)
* **clap_app!:** adds support for arg names with hyphens similar to longs with hyphens
* fixes a bug that wasn't allowing help and version to be properly overridden