From aded9abdc593f363bb599d1fce2d2a98c897f490 Mon Sep 17 00:00:00 2001 From: Kevin K Date: Wed, 7 Sep 2016 17:40:38 -0400 Subject: [PATCH] chore: increase version --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.toml | 2 +- README.md | 6 ++++++ 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fa013cc..41a61a21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ + +### v2.11.3 (2016-09-07) + + +#### Documentation + +* **Help Wrapping:** removes the verbage about using `'{n}'` to insert newlines in help text ([c5a2b352](https://github.com/kbknapp/clap-rs/commit/c5a2b352ca600f5b802290ad945731066cd53611)) + +#### Improvements + +* **Help Wrapping:** + * clap now ignores hard newlines in help messages and properly re-aligns text, but still wraps if the term width is too small ([c7678523](https://github.com/kbknapp/clap-rs/commit/c76785239fd42adc8ca04f9202b6fec615aa9f14), closes [#617](https://github.com/kbknapp/clap-rs/issues/617)) + * makes some minor changes to when next line help is automatically used ([01cae799](https://github.com/kbknapp/clap-rs/commit/01cae7990a33167ac35103fb36c811b4fe6eb98f)) +* **YAML:** supports setting Arg::require_delimiter from YAML ([b9b55a39](https://github.com/kbknapp/clap-rs/commit/b9b55a39dfebcdbdc05dca2692927e503db50816)) + + + ### v2.11.2 (2016-09-06) diff --git a/Cargo.toml b/Cargo.toml index e30bfd54..74605488 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clap" -version = "2.11.2" +version = "2.11.3" 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 75f11f46..952936b7 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,12 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc) ## What's New +Here's the highlights for v2.11.3 + +* `clap` no longer requires one to use `{n}` inside help text to insert a newline that is properly aligned. One can now use the normal `\n`. +* `clap` now ignores hard newlines in help messages and properly re-aligns text, but still wraps if the term width is too small +* Supports setting `Arg::require_delimiter` from YAML + Here's the highlights for v2.11.2 * Makes some minor changes to when next line help is automatically used for improved wrapping