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