-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cftool" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Xi Ruoyao <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[email protected]>") | ||
.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; | ||
|
||
|