From cc34dc4b76eb089c0e561db27e21d52b39a2aaee Mon Sep 17 00:00:00 2001 From: Kevin K Date: Mon, 2 May 2016 14:42:39 -0400 Subject: [PATCH] chore: increase version --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.toml | 2 +- README.md | 6 ++++++ 3 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ee1bdcf89a4..08c665563e2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ + +## v2.4.0 (2016-05-02) + + +#### Features + +* **Help:** adds support for displaying info before help message ([29fbfa3b](https://github.com/kbknapp/clap-rs/commit/29fbfa3b963f2f3ca7704bf5d3e1201531baa373)) +* **Required:** adds allowing args that are required unless certain args are present ([af1f7916](https://github.com/kbknapp/clap-rs/commit/af1f79168390ea7da4074d0d9777de458ea64971)) + +#### Documentation + +* hides formatting from docs ([cb708093](https://github.com/kbknapp/clap-rs/commit/cb708093a7cd057f08c98b7bd1ed54c2db86ae7e)) +* **required_unless:** adds docs and examples for required_unless ([ca727b52](https://github.com/kbknapp/clap-rs/commit/ca727b52423b9883acd88b2f227b2711bc144573)) + +#### Bug Fixes + +* **Required Args:** fixes issue where missing required args are sometimes duplicatd in error messages ([3beebd81](https://github.com/kbknapp/clap-rs/commit/3beebd81e7bc2faa4115ac109cf570e512c5477f), closes [#492](https://github.com/kbknapp/clap-rs/issues/492)) + + ## v2.3.0 (2016-04-18) diff --git a/Cargo.toml b/Cargo.toml index db05d9b1ec71..20033b5b536e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clap" -version = "2.3.0" +version = "2.4.0" authors = ["Kevin K. "] exclude = ["examples/*", "clap-tests/*", "tests/*", "benches/*", "*.png", "clap-perf/*"] description = "A simple to use, efficient, and full featured Command Line Argument Parser" diff --git a/README.md b/README.md index 8c5803ce2e9c..39b6abed637a 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,12 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc) ## What's New +Here's the highlights from v2.4.0 + +* **Before Help:** adds support for displaying info before help message +* **Required Unless:** adds support for allowing args that are required unless certain other args are present +* Bug fixes + Here's the highlights from v2.3.0 * **New Help Template Engine!**: Now you have full control over the layout of your help message. Major thanks to @hgrecco