From 1fc7b3c1fb8a594bdaf8fa87ee8d347f2f8cecf6 Mon Sep 17 00:00:00 2001 From: Jonathan Anderson Date: Thu, 9 Aug 2018 12:01:14 -0230 Subject: [PATCH] Bump version. The version of cargo-graph published on crates.io doesn't incorporate the fix for issue #40. Bump the version number so that `cargo install` can automatically pull in the fixed version. --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3ffd4ca..69052c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,13 +1,3 @@ -[root] -name = "cargo-graph" -version = "0.3.1" -dependencies = [ - "ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "clap 2.11.3 (registry+https://github.com/rust-lang/crates.io-index)", - "clippy 0.0.88 (registry+https://github.com/rust-lang/crates.io-index)", - "toml 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "ansi_term" version = "0.9.0" @@ -18,6 +8,16 @@ name = "bitflags" version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "cargo-graph" +version = "0.3.2" +dependencies = [ + "ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "clap 2.11.3 (registry+https://github.com/rust-lang/crates.io-index)", + "clippy 0.0.88 (registry+https://github.com/rust-lang/crates.io-index)", + "toml 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "clap" version = "2.11.3" diff --git a/Cargo.toml b/Cargo.toml index 0712b2b..50e0ae6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-graph" -version = "0.3.1" +version = "0.3.2" authors = [ "Kevin K. ", "Max New "