Notes + bump version

This commit is contained in:
Casey Rodarmor 2016-10-30 16:40:45 -07:00
parent 2568e949b5
commit 843662c285
3 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "j"
version = "0.2.8"
version = "0.2.9"
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
license = "WTFPL/MIT/Apache-2.0"
description = "a command runner"

3
notes
View File

@ -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

View File

@ -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 <casey@rodarmor.com>")
.about("Just a command runner - https://github.com/casey/j")
.arg(Arg::with_name("list")