chore: increase version

This commit is contained in:
Kevin K 2016-12-08 15:41:03 -05:00
parent 7e17d5a36b
commit 7144419598
No known key found for this signature in database
GPG key ID: 17218E4B3692F01A
3 changed files with 23 additions and 7 deletions

View file

@ -1,3 +1,17 @@
<a name="v2.19.2"></a>
### v2.19.2 (2016-12-08)
#### Bug Fixes
* **ZSH Completions:** escapes square brackets in ZSH completions ([7e17d5a3](https://github.com/kbknapp/clap-rs/commit/7e17d5a36b2cc2cc77e7b15796b14d639ed3cbf7), closes [#771](https://github.com/kbknapp/clap-rs/issues/771))
#### Documentation
* **Examples:** adds subcommand examples ([0e0f3354](https://github.com/kbknapp/clap-rs/commit/0e0f33547a6901425afc1d9fbe19f7ae3832d9a4), closes [#766](https://github.com/kbknapp/clap-rs/issues/766))
* **README.md:** adds guidance on when to use ~ in version pinning, and clarifies breaking change policy ([591eaefc](https://github.com/kbknapp/clap-rs/commit/591eaefc7319142ba921130e502bb0729feed907), closes [#765](https://github.com/kbknapp/clap-rs/issues/765))
<a name="v2.19.1"></a>
### v2.19.1 (2016-12-01)

View file

@ -1,7 +1,7 @@
[package]
name = "clap"
version = "2.19.1"
version = "2.19.2"
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,16 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
## What's New
Here's the highlights for v2.19.1
Here's the highlights for v2.19.2
* Fixes a bug by escaping square brackets in ZSH completions which were causing conflicts and errors.
* Adds subcommand examples (`examples/20_subcommands.rs`)
* Adds guidance on when to use ~ in version pinning, and clarifies breaking change policy
Here's the highlights from v2.0.0 to v2.19.1
* **Help Messages:** fixes help message alignment when specific settings are used on options
* **Bash Completion:** allows bash completion to fall back to traidtional bash completion upon no matching completing function
Here's the highlights from v2.0.0 to v2.19.0
* **Arg Setting**: Allows specifying an `AllowLeadingHyphen` style setting for values only for specific args, vice command wide
* **Validators:** improves the error messages for validators
* **Required Unless:** fixes a bug where having required_unless set doesn't work when conflicts are also set