From c556b39fd0512bc3ea1e11d009390c2888194834 Mon Sep 17 00:00:00 2001 From: Kevin K Date: Sat, 6 May 2017 20:23:01 -0400 Subject: [PATCH] chore: increase version --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 2 +- README.md | 11 +++++++---- 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eaeda815ab0..5a08349bdd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ + +### v2.24.0 (2017-05-07) + + +#### Bug Fixes + +* fixes a bug where args with last(true) and required(true) set were not being printed in the usage string ([3ac533fe](https://github.com/kbknapp/clap-rs/commit/3ac533fedabf713943eedf006f830a5a486bbe80), closes [#944](https://github.com/kbknapp/clap-rs/issues/944)) +* fixes a bug that was printing the arg name, instead of value name when Arg::last(true) was used ([e1fe8ac3](https://github.com/kbknapp/clap-rs/commit/e1fe8ac3bc1f9cf4e36df0d881f8419755f1787b), closes [#940](https://github.com/kbknapp/clap-rs/issues/940)) +* fixes a bug where flags were parsed as flags AND positional values when specific combinations of settings were used ([20f83292](https://github.com/kbknapp/clap-rs/commit/20f83292d070038b8cee2a6b47e91f6b0a2f7871), closes [#946](https://github.com/kbknapp/clap-rs/issues/946)) + + + ## v2.24.0 (2017-05-05) diff --git a/Cargo.toml b/Cargo.toml index 20cbb84924b..23bf1f24682 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clap" -version = "2.24.0" +version = "2.24.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 fc502d51e9a..ae9a8c7dd71 100644 --- a/README.md +++ b/README.md @@ -45,14 +45,17 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc) ## What's New -Here's the highlights for v2.24.0 +Here's the highlights for v2.24.1 + +* fixes a bug where args with last(true) and required(true) set were not being printed in the usage string +* fixes a bug that was printing the arg name, instead of value name when Arg::last(true) was used +* fixes a bug where flags were parsed as flags AND positional values when specific combinations of settings were used + +Here's the highlights for v2.21.0 to v2.24.0 * **README.md:** fix some typos * **Arg:** add `default_value_os` * **arg_matches.rs:** Added a Default implementation for Values and OsValues iterators. - -Here's the highlights for v2.21.0 to v2.23.3 - * **PowerShell Completions:** * fixes a bug where powershells completions cant be used if no subcommands are defined * massively dedups subcommand names in the generate script to make smaller scripts that are still functionally equiv