From b20a93aa1e587358493a753080aff462b6e0a722 Mon Sep 17 00:00:00 2001 From: Kevin K Date: Tue, 7 Jul 2015 20:20:45 -0400 Subject: [PATCH] chore: increase version --- CHANGELOG.md | 15 +++++++++++++++ Cargo.toml | 6 +++--- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51ba9836..5b0e711c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ + +## 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)) + + + ## v1.0.0-beta (2015-06-30) diff --git a/Cargo.toml b/Cargo.toml index c56e0c2f..08d6eeda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clap" -version = "1.0.0-beta" +version = "1.0.0" authors = ["Kevin K. "] 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