From 8ecb02d0b44a7feed533962f1586ce68050611bb Mon Sep 17 00:00:00 2001 From: Kevin K Date: Sun, 21 Aug 2016 20:46:57 -0400 Subject: [PATCH] chore: increase version --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- README.md | 4 ++++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32548e68..463bba4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ + +### v2.10.2 (2016-08-22) + + +#### Bug Fixes + +* fixes a bug where the help is printed twice ([a643fb28](https://github.com/kbknapp/clap-rs/commit/a643fb283acd9905dc727c4579c5c9fa2ceaa7e7), closes [#623](https://github.com/kbknapp/clap-rs/issues/623)) + + + ### v2.10.1 (2016-08-21) diff --git a/Cargo.toml b/Cargo.toml index 080b3627..cc975cba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clap" -version = "2.10.1" +version = "2.10.2" authors = ["Kevin K. "] exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"] description = "A simple to use, efficient, and full featured Command Line Argument Parser" diff --git a/README.md b/README.md index a794bd21..5b39f638 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,10 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc) ## What's New +Here's the highlights for v2.10.2 + +* Fixes a critical bug where the help message is printed twice + Here's the highlights for v2.10.1 * **Help Subcommand:** fixes misleading usage string when using multi-level subcommmands such as `myprog help subcmd1 subcmd2`