chore(clap): increase version

This commit is contained in:
Kevin K 2015-04-30 19:59:45 -04:00
parent e75f304222
commit abc31077b0
2 changed files with 20 additions and 1 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "clap"
version = "0.6.9"
version = "0.7.0"
authors = ["Kevin K. <kbknapp@gmail.com>"]
exclude = ["docs/*", "examples/*", "claptests/*"]
description = "A simple to use, efficient, and full featured Command Line Argument Parser"

View file

@ -1,3 +1,22 @@
<a name="v0.7.0"></a>
## v0.7.0 (2015-04-30)
#### Bug Fixes
* **from_usage** removes bug where usage strings have no help text ([ad4e5451](https://github.com/kbknapp/clap-rs/commit/ad4e54510739aeabf75f0da3278fb0952db531b3), closes [#83](https://github.com/kbknapp/clap-rs/issues/83))
#### Features
* **MultipleValues**
* add support for minimum and maximum number of values ([53f6b8c9](https://github.com/kbknapp/clap-rs/commit/53f6b8c9d8dc408b4fa9f833fc3a63683873c42f))
* adds support limited number and named values ([ae09f05e](https://github.com/kbknapp/clap-rs/commit/ae09f05e92251c1b39a83d372736fcc7b504e432))
* implement shorthand for options with multiple values ([6669f0a9](https://github.com/kbknapp/clap-rs/commit/6669f0a9687d4f668523145d7bd5c007d1eb59a8))
* **arg** allow other types besides Vec for multiple value settings ([0cc2f698](https://github.com/kbknapp/clap-rs/commit/0cc2f69839b9b1db5d06330771b494783049a88e), closes [#87](https://github.com/kbknapp/clap-rs/issues/87))
* **usage** implement smart usage strings on errors ([d77048ef](https://github.com/kbknapp/clap-rs/commit/d77048efb1e595ffe831f1a2bea2f2700db53b9f), closes [#88](https://github.com/kbknapp/clap-rs/issues/88))
<a name="v0.6.9"></a>
## v0.6.9 (2015-04-29)