diff --git a/Cargo.lock b/Cargo.lock index 391894e..7522774 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -127,7 +127,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cftool" -version = "0.3.1" +version = "0.3.2" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "cookie_store 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 5e23c9c..fd7b919 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cftool" -version = "0.3.1" +version = "0.3.2" authors = ["Xi Ruoyao "] edition = "2018" diff --git a/src/main.rs b/src/main.rs index d60aabe..da26862 100644 --- a/src/main.rs +++ b/src/main.rs @@ -247,7 +247,7 @@ enum Action { fn main() { use clap::{App, Arg}; let matches = App::new("XDU-ICPC cftool") - .version("0.3.1") + .version("0.3.2") .author("Xi Ruoyao ") .about("A command line tool for submitting code to Codeforces") .arg( @@ -363,7 +363,7 @@ fn main() { .init() .unwrap(); - info!("{}", "this is XDU-ICPC cftool, version 0.3.1"); + info!("{}", "this is XDU-ICPC cftool, version 0.3.2"); let mut action = Action::None;