From fd90f2235df8e64c32d8e82ba76401a0aa0725d9 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sun, 19 Dec 2021 13:10:28 -0500 Subject: [PATCH] version bump --- Cargo.toml | 2 +- src/arg.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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")