mirror of
https://github.com/clap-rs/clap
synced 2025-03-04 15:27:16 +00:00
chore: increase version
This commit is contained in:
parent
e112cdd7de
commit
8e2e7448e9
3 changed files with 26 additions and 5 deletions
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -1,3 +1,19 @@
|
|||
<a name="v2.20.1"></a>
|
||||
### v2.20.1 (2017-01-30)
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
* Fix finding required arguments in group arguments ([f9f778e](https://github.com/kbknapp/clap-rs/commit/5b29be9b073330ab1f7227cdd19fe4aab39d5dcb), closes [#829](https://github.com/kbknapp/clap-rs/pull/829))
|
||||
|
||||
#### Documentation
|
||||
|
||||
* fix link from app_from_crate! to crate_authors! ([5b29be9b](https://github.com/kbknapp/clap-rs/commit/5b29be9b073330ab1f7227cdd19fe4aab39d5dcb), closes [#822](https://github.com/kbknapp/clap-rs/pull/822))
|
||||
* fix spelling of "guaranteed" ([4f30a65b](https://github.com/kbknapp/clap-rs/commit/4f30a65b9c03eb09607eb91a929a6396637dc105))
|
||||
|
||||
#### Improvements
|
||||
|
||||
* updates libc and term_size deps for the libc version conflict ([6802ac4a](https://github.com/kbknapp/clap-rs/commit/6802ac4a59c142cda9ec55ca0c45ae5cb9a6ab55))
|
||||
|
||||
<a name="v2.20.0"></a>
|
||||
|
||||
#### New Settings
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "clap"
|
||||
version = "2.20.0"
|
||||
version = "2.20.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"
|
||||
|
|
13
README.md
13
README.md
|
@ -45,7 +45,15 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
|
|||
|
||||
## What's New
|
||||
|
||||
Here's the highlights for v2.20.0
|
||||
Here's the highlights for v2.20.1
|
||||
|
||||
* updates libc and term_size deps for the libc version conflict
|
||||
* Fix finding required arguments in group arguments
|
||||
* fix link from app_from_crate! to crate_authors!
|
||||
* fix spelling of "guaranteed"
|
||||
|
||||
|
||||
Here's the highlights from v2.0.0 to v2.20.0
|
||||
|
||||
* **ArgsNegateSubcommands:** disables args being allowed between subcommands
|
||||
* **DontCollapseArgsInUsage:** disables the collapsing of positional args into `[ARGS]` in the usage string
|
||||
|
@ -72,9 +80,6 @@ Here's the highlights for v2.20.0
|
|||
* **Help Wrapping:** long app names (with spaces), authors, and descriptions are now wrapped appropriately
|
||||
* **Conditional Default Values:** fixes the failing doc tests of Arg::default_value_ifs
|
||||
* **Conditional Requirements:** adds docs for Arg::requires_ifs
|
||||
|
||||
Here's the highlights from v2.0.0 to v2.19.3
|
||||
|
||||
* Fixes a bug where calling the help of a subcommand wasn't ignoring required args of parent commands
|
||||
* Fixes a bug by escaping square brackets in ZSH completions which were causing conflicts and errors.
|
||||
* **Bash Completion:** allows bash completion to fall back to traidtional bash completion upon no matching completing function
|
||||
|
|
Loading…
Add table
Reference in a new issue