chore: increase version

This commit is contained in:
Kevin K 2017-05-06 20:23:01 -04:00
parent 9f9364b1d8
commit c556b39fd0
3 changed files with 20 additions and 5 deletions

View file

@ -1,3 +1,15 @@
<a name="v2.24.0"></a>
### 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))
<a name="v2.24.0"></a>
## v2.24.0 (2017-05-05)

View file

@ -1,7 +1,7 @@
[package]
name = "clap"
version = "2.24.0"
version = "2.24.1"
authors = ["Kevin K. <kbknapp@gmail.com>"]
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
repository = "https://github.com/kbknapp/clap-rs.git"

View file

@ -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