mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
chore: increase version
This commit is contained in:
parent
c84834abbb
commit
fa452fad65
3 changed files with 19 additions and 4 deletions
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -1,3 +1,15 @@
|
|||
<a name="v2.7.1"></a>
|
||||
### v2.7.1 (2016-06-29)
|
||||
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
* **Options:**
|
||||
* options with multiple values and using delimiters no longer parse additional values after a trailing space ([cdc500bd](https://github.com/kbknapp/clap-rs/commit/cdc500bdde6abe238c36ade406ddafc2bafff583))
|
||||
* using options with multiple values and with an = no longer parse args after the trailing space as values ([290f61d0](https://github.com/kbknapp/clap-rs/commit/290f61d07177413cf082ada55526d83405f6d011))
|
||||
|
||||
|
||||
|
||||
<a name="v2.7.0"></a>
|
||||
## v2.7.0 (2016-06-28)
|
||||
|
||||
|
@ -1639,6 +1651,3 @@
|
|||
#### Features
|
||||
|
||||
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/kbknapp/clap-rs/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "clap"
|
||||
version = "2.7.0"
|
||||
version = "2.7.1"
|
||||
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
||||
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
|
||||
description = "A simple to use, efficient, and full featured Command Line Argument Parser"
|
||||
|
|
|
@ -38,6 +38,12 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
|
|||
|
||||
## What's New
|
||||
|
||||
Here's the highlights for v2.7.1
|
||||
|
||||
* **Options:**
|
||||
* options using multiple values and delimiters no longer parse additional values after a trailing space (i.e. `prog -o 1,2 file.txt` parses as `1,2` for `-o` and `file.txt` for a positional arg)
|
||||
* using options using multiple values and with an `=` no longer parse args after the trailing space as values (i.e. `prog -o=1 file.txt` parses as `1` for `-o` and `file.txt` for a positional arg)
|
||||
|
||||
Here's the highlights for v2.7.0
|
||||
|
||||
* **Usage Strings:** `[FLAGS]` and `[ARGS]` are no longer blindly added to usage strings, instead only when applicable
|
||||
|
|
Loading…
Reference in a new issue