From 9efedeba0008a4ceb4b8523f0ce14c1fe78cefda Mon Sep 17 00:00:00 2001 From: Wynd Date: Sun, 15 Sep 2024 13:48:21 +0300 Subject: [PATCH] Fixed the --ignore flag being misspelled --- Cargo.lock | 2 +- Cargo.toml | 4 ++-- src/cli.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 15124f9..f105d33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -426,7 +426,7 @@ dependencies = [ [[package]] name = "git-heatmap" -version = "1.0.2" +version = "1.0.3" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index d4dbc75..11a9de6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ cargo-features = ["codegen-backend"] [package] name = "git-heatmap" -version = "1.0.2" +version = "1.0.3" edition = "2021" authors = ["Wynd "] description = "A simple and customizable heatmap for git repos" @@ -31,4 +31,4 @@ incremental = true opt-level = 3 strip = true lto = true -codegen-units = 1 \ No newline at end of file +codegen-units = 1 diff --git a/src/cli.rs b/src/cli.rs index fea20f7..4b20d0e 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -23,7 +23,7 @@ pub struct CliArgs { #[arg(short, long, num_args(0..), value_hint = ValueHint::DirPath)] pub repos: Option>, - #[arg(short('i'), long("igore"), num_args(0..))] + #[arg(short('i'), long("ignore"), num_args(0..))] pub ignored_repos: Option>, #[arg(short, long, num_args(0..))]