From 6095f239badec209ed3b3eed6103383b3c203148 Mon Sep 17 00:00:00 2001 From: Kevin K Date: Wed, 5 Apr 2017 10:50:35 -0400 Subject: [PATCH] chore: increase version --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- README.md | 3 ++- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19ee5e55..fef1c23d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ + +### 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)) + + ## v2.23.0 (2017-04-05) diff --git a/Cargo.toml b/Cargo.toml index 306fd5c9..2f8c089d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clap" -version = "2.23.0" +version = "2.23.1" authors = ["Kevin K. "] exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"] repository = "https://github.com/kbknapp/clap-rs.git" diff --git a/README.md b/README.md index 36b8677e..ee7e3191 100644 --- a/README.md +++ b/README.md @@ -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