summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCasey Rodarmor <casey@rodarmor.com>2016-10-31 23:04:58 -0700
committerCasey Rodarmor <casey@rodarmor.com>2016-10-31 23:04:58 -0700
commit3fb4fc8074136dea8dfe5cda6e2618b4f1a58060 (patch)
tree8eb8661ab2fadac4023137783a3c92df89d0e0cd
parent390491f7fabd6d9b384fddece59620af9d72f3de (diff)
Bump versionv0.2.13
-rw-r--r--Cargo.lock8
-rw-r--r--Cargo.toml2
-rw-r--r--notes2
-rw-r--r--src/app.rs2
4 files changed, 8 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index e09c970a..7ee272f9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1,9 +1,9 @@
[root]
name = "just"
-version = "0.2.12"
+version = "0.2.13"
dependencies = [
"brev 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
- "clap 2.16.3 (registry+https://github.com/rust-lang/crates.io-index)",
+ "clap 2.16.4 (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.3"
+version = "2.16.4"
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.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0ab91429d96eece6d6cf8a737105f0e255fea039fed86e2118ff8d3fd69601dd"
+"checksum clap 2.16.4 (registry+https://github.com/rust-lang/crates.io-index)" = "36d263873a130ed39c7f4ed66466dd79d821ace4434aac6b041e6b7054836e5a"
"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 f5729073..385463ce 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "just"
-version = "0.2.12"
+version = "0.2.13"
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
license = "WTFPL/MIT/Apache-2.0"
description = "🤖 Just a command runner"
diff --git a/notes b/notes
new file mode 100644
index 00000000..ff8bb299
--- /dev/null
+++ b/notes
@@ -0,0 +1,2 @@
+todo
+----
diff --git a/src/app.rs b/src/app.rs
index 75dc0643..df959657 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.12")
+ .version("0.2.13")
.author("Casey Rodarmor <casey@rodarmor.com>")
.about("Just a command runner - https://github.com/casey/just")
.arg(Arg::with_name("list")