From 011876baff9515eed990c52a83b9ee18bf2e578c Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Fri, 28 Oct 2016 20:45:05 -0700 Subject: [PATCH] Bump version to 0.2.6, build before publishing --- Cargo.toml | 2 +- justfile | 2 +- src/app.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0f6ebf6..120cc56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "j" -version = "0.2.5" +version = "0.2.6" authors = ["Casey Rodarmor "] license = "WTFPL/MIT/Apache-2.0" description = "a command runner" diff --git a/justfile b/justfile index d16fcec..491b145 100644 --- a/justfile +++ b/justfile @@ -13,7 +13,7 @@ backtrace: build: cargo build -publish: clippy +publish: clippy build # make sure version is up to date grep 'version("'`sed -En 's/version = "([^"]+)"/\1/p' Cargo.toml`'")' src/app.rs git push github master:master diff --git a/src/app.rs b/src/app.rs index 572a80f..de73d88 100644 --- a/src/app.rs +++ b/src/app.rs @@ -21,7 +21,7 @@ macro_rules! die { pub fn app() { let matches = App::new("j") - .version("0.2.5") + .version("0.2.6") .author("Casey R. ") .about("Just a command runner - https://github.com/casey/j") .arg(Arg::with_name("list")