diff --git a/CHANGES.md b/CHANGES.md index 782b2ce4..a77b1f96 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,13 +2,15 @@ All notable changes to this program is documented in this file. -## Unreleased +## 0.10.0 (2016-08-02) ### Changed - Disable autofilling of forms by default by @mythsunwind +_ Replace argparse with clap for arguments parsing. ### Fixed - Attempt to deploy a single file from Travis when making a release +- grammar fix in readme ## 0.9.0 (2016-06-30) diff --git a/Cargo.lock b/Cargo.lock index 97bbfbd6..0607efb6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "geckodriver" -version = "0.9.0" +version = "0.10.0" dependencies = [ "clap 2.9.2 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index d1bb4c04..b2fe1e52 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "geckodriver" -version = "0.9.0" +version = "0.10.0" authors = ["James Graham "] description = "Proxy for using WebDriver clients to interact with Gecko-based browsers." repository = "https://github.com/jgraham/wires" @@ -22,4 +22,4 @@ zip = "0.1.16" [dependencies.clap] version = "2.9" default-features = false -features = ["suggestions", "wrap_help"] \ No newline at end of file +features = ["suggestions", "wrap_help"]