chore: increase version

This commit is contained in:
Kevin K 2017-05-04 21:11:41 -04:00
parent b7d874be87
commit bd4dbb4214
3 changed files with 22 additions and 26 deletions

View file

@ -1,3 +1,17 @@
<a name="v2.24.0"></a>
## v2.24.0 (2017-05-05)
#### Documentation
* **README.md:** fix some typos ([fa34deac](https://github.com/kbknapp/clap-rs/commit/fa34deac079f334c3af97bb7fb151880ba8887f8))
#### API Additions
* **Arg:** add `default_value_os` ([d5ef8955](https://github.com/kbknapp/clap-rs/commit/d5ef8955414b1587060f7218385256105b639c88))
* **arg_matches.rs:** Added a Default implementation for Values and OsValues iterators. ([0a4384e3](https://github.com/kbknapp/clap-rs/commit/0a4384e350eed74c2a4dc8964c203f21ac64897f))
<a name="v2.23.2"></a>
### v2.23.2 (2017-04-19)
@ -15,18 +29,6 @@
* Fix a typo the minimum rust version required ([71dabba3](https://github.com/kbknapp/clap-rs/commit/71dabba3ea0a17c88b0e2199c9d99f0acbf3bc17))
<a name="v2.23.2"></a>
### v2.23.2 (2017-04-09)
#### Improvements
* bumps term_size to take advantage of better terminal dimension handling ([e05100b7](https://github.com/kbknapp/clap-rs/commit/e05100b73d74066a90876bf38f952adf5e8ee422))
<a name="v2.23.1"></a>
### v2.23.1 (2017-04-05)

View file

@ -1,7 +1,7 @@
[package]
name = "clap"
version = "2.23.3"
version = "2.24.0"
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,20 +45,17 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
## What's New
Here's the highlights for v2.23.3
Here's the highlights for 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
* Fix a typo the minimum rust version required
Here's the highlights for v2.23.2
* bumps term_size to take advantage of better terminal dimension handling
Here's the highlights for v2.23.1
* fixes a missing newline character in the autogenerated help and version messages in some instances
* allows specifying a short help vs a long help (i.e. varying levels of detail depending on if -h or --help was used)
* **clap_app!:** adds support for arg names with hyphens similar to longs with hyphens
* fixes a bug that wasn't allowing help and version to be properly overridden
@ -71,9 +68,6 @@ Here's the highlights for v2.23.1
* `App::write_long_version`
* `Arg::long_help`
* **clap_app!:** documents the `--("some-arg")` method for using args with hyphens inside them
Here's the highlights for v2.21.0 to v2.22.2
* fixes the usage string regression when using help templates
* fixes a big regression with custom usage strings
* adds the ability to change the name of the App instance after creation