From 39a78c968f6b82f4358ebeda8093308d574822cb Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Sat, 5 Nov 2016 01:54:44 -0700 Subject: [PATCH] Bump version to 0.2.16 (#21) --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- src/app.rs | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c36d3a3..4b33dab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,9 +1,9 @@ [root] name = "just" -version = "0.2.15" +version = "0.2.16" dependencies = [ "brev 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "clap 2.16.4 (registry+https://github.com/rust-lang/crates.io-index)", + "clap 2.17.1 (registry+https://github.com/rust-lang/crates.io-index)", "itertools 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "regex 0.1.80 (registry+https://github.com/rust-lang/crates.io-index)", @@ -39,7 +39,7 @@ dependencies = [ [[package]] name = "clap" -version = "2.16.4" +version = "2.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -197,7 +197,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "23ac7c30002a5accbf7e8987d0632fa6de155b7c3d39d0067317a391e00a2ef6" "checksum bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d" "checksum brev 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "79571b60a8aa293f43b46370d8ba96fed28a5bee1303ea0e015d175ed0c63b40" -"checksum clap 2.16.4 (registry+https://github.com/rust-lang/crates.io-index)" = "36d263873a130ed39c7f4ed66466dd79d821ace4434aac6b041e6b7054836e5a" +"checksum clap 2.17.1 (registry+https://github.com/rust-lang/crates.io-index)" = "27dac76762fb56019b04aed3ccb43a770a18f80f9c2eb62ee1a18d9fb4ea2430" "checksum either 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8aa2c82b7e1abd89a8a59fd89c4a51576ea76a894edf5d5b28944dd46edfed8d" "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" "checksum itertools 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ef81b0a15a9e1808cfd3ebe6a87277d29ee88b34ac1197cc7547f1dd6d9f5424" diff --git a/Cargo.toml b/Cargo.toml index 7f164fe..276dfdc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "just" -version = "0.2.15" +version = "0.2.16" authors = ["Casey Rodarmor "] license = "WTFPL/MIT/Apache-2.0" description = "🤖 Just a command runner" diff --git a/src/app.rs b/src/app.rs index 38d2c14..b930232 100644 --- a/src/app.rs +++ b/src/app.rs @@ -23,7 +23,7 @@ macro_rules! die { pub fn app() { let matches = App::new("just") - .version("0.2.15") + .version("0.2.16") .author("Casey Rodarmor ") .about("Just a command runner - https://github.com/casey/just") .arg(Arg::with_name("list")