diff --git a/Cargo.toml b/Cargo.toml index 03bd306..9ef6cdd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gt" -version = "0.1.0" +version = "0.2.0" authors = ["Wyatt J. Miller "] edition = "2018" description = "A Gitea CLI client" diff --git a/src/arg.rs b/src/arg.rs index 83cd6cb..1fd8d5c 100644 --- a/src/arg.rs +++ b/src/arg.rs @@ -4,7 +4,7 @@ use clap::{App, Arg, SubCommand, ArgMatches}; /// An error occurs when a command passes through and it doesn't match the argument specified. pub fn get_args() -> ArgMatches<'static> { let matches = App::new("gt") - .version("0.0.1") + .version("0.0.2") .author("Wyatt J. Miller ") .about("It's a Gitea CLI client!") .subcommand(SubCommand::with_name("repo")