summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCasey Rodarmor <casey@rodarmor.com>2016-10-30 17:09:33 -0700
committerCasey Rodarmor <casey@rodarmor.com>2016-10-30 17:09:33 -0700
commit0b182002a48427a26fe4e99bd4930a042ac06eea (patch)
tree2ed66ce2b3d26ed416196ec10180f25350c45caf
parentdc925fe5902699da52804c6c4aa627a90ecaa7a2 (diff)
Notes, bump versionv0.2.10
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--notes1
-rw-r--r--src/app.rs2
4 files changed, 4 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index bac81a7d..477175a6 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 67279097..39eab85b 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 <casey@rodarmor.com>"]
license = "WTFPL/MIT/Apache-2.0"
description = "a command runner"
diff --git a/notes b/notes
index 5d77887d..610dae0c 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 3004503c..1afc9931 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 <casey@rodarmor.com>")
.about("Just a command runner - https://github.com/casey/j")
.arg(Arg::with_name("list")