mirror of
https://github.com/clap-rs/clap
synced 2024-12-12 13:52:34 +00:00
chore: increase version
This commit is contained in:
parent
6bb0576a72
commit
b20a93aa1e
2 changed files with 18 additions and 3 deletions
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -1,3 +1,18 @@
|
|||
<a name="v1.0.0"></a>
|
||||
## v1.0.0 (2015-07-08)
|
||||
|
||||
|
||||
#### Documentation
|
||||
|
||||
* **README.md** adds new features to what's new list ([938f7f01](https://github.com/kbknapp/clap-rs/commit/938f7f01340f521969376cf4e2e3d9436bca21f7))
|
||||
* **README.md** use with_name for subcommands ([28b7e316](https://github.com/kbknapp/clap-rs/commit/28b7e3161fb772e5309042648fe8c3a420645bac))
|
||||
|
||||
#### Features
|
||||
|
||||
* args can now be parsed from arbitrary locations, not just std::env::args() ([75312528](https://github.com/kbknapp/clap-rs/commit/753125282b1b9bfff875f1557ce27610edcc59e1))
|
||||
|
||||
|
||||
|
||||
<a name="v1.0.0"></a>
|
||||
## v1.0.0-beta (2015-06-30)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "clap"
|
||||
version = "1.0.0-beta"
|
||||
version = "1.0.0"
|
||||
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
||||
exclude = ["examples/*", "clap-tests/*"]
|
||||
description = "A simple to use, efficient, and full featured Command Line Argument Parser"
|
||||
|
@ -21,9 +21,9 @@ color = ["ansi_term"]
|
|||
unstable=[]
|
||||
|
||||
[dependencies.strsim]
|
||||
version = "*"
|
||||
version = "0.4.0"
|
||||
optional = true
|
||||
|
||||
[dependencies.ansi_term]
|
||||
version = "*"
|
||||
version = "0.6.3"
|
||||
optional = true
|
||||
|
|
Loading…
Reference in a new issue