diff --git a/Cargo.toml b/Cargo.toml index 04b35bf..6727909 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "j" -version = "0.2.8" +version = "0.2.9" authors = ["Casey Rodarmor "] license = "WTFPL/MIT/Apache-2.0" description = "a command runner" diff --git a/notes b/notes index fe68d7a..251656d 100644 --- a/notes +++ b/notes @@ -11,6 +11,8 @@ todo . just xyz/ # xyz/justfile:DEFAULT . path prefix is starting dir, so just ../foo can run ../../justfile:foo . how does this interact with a=b/hello? + . can you use more than one path this way? + . do we just recursively invoke just for each? - change name back to 'just', suggest j as alias @@ -50,3 +52,4 @@ todo . facebook friends . irc . r/rust + . hacker news diff --git a/src/app.rs b/src/app.rs index 9a1f873..3004503 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.8") + .version("0.2.9") .author("Casey Rodarmor ") .about("Just a command runner - https://github.com/casey/j") .arg(Arg::with_name("list")