diff --git a/Cargo.toml b/Cargo.toml index cd3f7a1..70e5e5c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pretty-git-prompt" -version = "0.1.0" +version = "0.1.2" authors = ["Tomas Tomecek "] [[bin]] diff --git a/README.md b/README.md index e8b1863..e8c4387 100644 --- a/README.md +++ b/README.md @@ -84,13 +84,13 @@ Get the binary via [latest GitHub release](https://github.com/TomasTomecek/prett For a linux distrubution: ``` -$ curl -O https://github.com/TomasTomecek/pretty-git-prompt/releases/download/0.1.3/pretty-git-prompt-0.1.0-x86_64-unknown-linux-gnu +$ curl -O https://github.com/TomasTomecek/pretty-git-prompt/releases/download/0.1.2/pretty-git-prompt-0.1.2-x86_64-unknown-linux-gnu ``` Or for MacOS: ``` -$ curl -O https://github.com/TomasTomecek/pretty-git-prompt/releases/download/0.1.0/pretty-git-prompt-0.1.0-x86_64-apple-darwin +$ curl -O https://github.com/TomasTomecek/pretty-git-prompt/releases/download/0.1.2/pretty-git-prompt-0.1.2-x86_64-apple-darwin ``` diff --git a/src/cli.rs b/src/cli.rs index 79db5e3..145d20f 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -7,7 +7,7 @@ pub fn cli<'a, 'b>() -> App<'a, 'b> { // FIXME: populate about with this // let ref def_conf_desc = format!("Create default config at \"{}\".", get_default_config_path().to_str().unwrap()); App::new("pretty-zsh-prompt") - .version("0.1.0") + .version("0.1.2") .author("Tomas Tomecek ") .about("Get `git status` inside your shell prompt.") .subcommand(SubCommand::with_name(CLI_DEFAULT_CONFIG_SUBC_NAME))