From 0b182002a48427a26fe4e99bd4930a042ac06eea Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Sun, 30 Oct 2016 17:09:33 -0700 Subject: [PATCH] Notes, bump version --- Cargo.lock | 2 +- Cargo.toml | 2 +- notes | 1 + src/app.rs | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bac81a7..477175a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "j" -version = "0.2.9" +version = "0.2.10" 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)", diff --git a/Cargo.toml b/Cargo.toml index 6727909..39eab85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "j" -version = "0.2.9" +version = "0.2.10" authors = ["Casey Rodarmor "] license = "WTFPL/MIT/Apache-2.0" description = "a command runner" diff --git a/notes b/notes index 5d77887..610dae0 100644 --- a/notes +++ b/notes @@ -4,6 +4,7 @@ todo - change name back to 'just', suggest j as alias - readme: + . link to docs, cargo badge, crates . start with an example justfile . make it clear it's beta, mention that, as a command runner there is probably a higher than normal chance of disaster diff --git a/src/app.rs b/src/app.rs index 3004503..1afc993 100644 --- a/src/app.rs +++ b/src/app.rs @@ -23,7 +23,7 @@ macro_rules! die { pub fn app() { let matches = App::new("j") - .version("0.2.9") + .version("0.2.10") .author("Casey Rodarmor ") .about("Just a command runner - https://github.com/casey/j") .arg(Arg::with_name("list")