version bump

This commit is contained in:
Wyatt J. Miller 2021-12-19 13:10:28 -05:00
parent 7ad99a74b4
commit fd90f2235d
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "gt" name = "gt"
version = "0.1.0" version = "0.2.0"
authors = ["Wyatt J. Miller <wjmiller2016@gmail.com>"] authors = ["Wyatt J. Miller <wjmiller2016@gmail.com>"]
edition = "2018" edition = "2018"
description = "A Gitea CLI client" description = "A Gitea CLI client"

View File

@ -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. /// An error occurs when a command passes through and it doesn't match the argument specified.
pub fn get_args() -> ArgMatches<'static> { pub fn get_args() -> ArgMatches<'static> {
let matches = App::new("gt") let matches = App::new("gt")
.version("0.0.1") .version("0.0.2")
.author("Wyatt J. Miller <wjmiller2016@gmail.com>") .author("Wyatt J. Miller <wjmiller2016@gmail.com>")
.about("It's a Gitea CLI client!") .about("It's a Gitea CLI client!")
.subcommand(SubCommand::with_name("repo") .subcommand(SubCommand::with_name("repo")