mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 14:22:34 +00:00
chore: increase version
This commit is contained in:
parent
29e362cc19
commit
a9d5453085
3 changed files with 21 additions and 10 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,3 +1,16 @@
|
|||
<a name="v2.19.1"></a>
|
||||
### v2.19.1 (2016-12-01)
|
||||
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
* **Help Messages:** fixes help message alignment when specific settings are used on options ([cd94b318](https://github.com/kbknapp/clap-rs/commit/cd94b3188d63b63295a319e90e826bca46befcd2), closes [#760](https://github.com/kbknapp/clap-rs/issues/760))
|
||||
|
||||
#### Improvements
|
||||
|
||||
* **Bash Completion:** allows bash completion to fall back to traidtional bash completion upon no matching completing function ([b1b16d56](https://github.com/kbknapp/clap-rs/commit/b1b16d56d8fddf819bdbe24b3724bb6a9f3fa613)))
|
||||
|
||||
|
||||
<a name="v2.19.0"></a>
|
||||
## v2.19.0 (2016-11-21)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "clap"
|
||||
version = "2.19.0"
|
||||
version = "2.19.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"
|
||||
|
|
16
README.md
16
README.md
|
@ -45,20 +45,18 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
|
|||
|
||||
## What's New
|
||||
|
||||
Here's the highlights for v2.19.0
|
||||
Here's the highlights for 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
|
||||
* Updates the docs landing page
|
||||
* Adds the macro version back to the readme
|
||||
* Fixes some broken docs links
|
||||
* **Compatibility Policy:** adds an official compatibility policy to
|
||||
* **Contributing:** updates the readme to improve the readability and contributing sections
|
||||
* **Required Unless:** fixes a bug where having required_unless set doesn't work when conflicts are also set
|
||||
* **ZSH Completions:** fixes an issue where zsh completions caused panics if there were no subcommands
|
||||
|
||||
Here's the highlights from v2.0.0 to v2.18.0
|
||||
|
||||
* **Completions:** Adds completion support for Microsoft PowerShell! (Thanks to @Arnavion)
|
||||
* Allows specifying the second to last positional argument as `multiple(true)` (i.e. things such as `mv <files>... <target>`)
|
||||
* Adds an `App::get_name` and `App::get_bin_name`
|
||||
|
|
Loading…
Reference in a new issue