From e94977a96a3f4f0a94ca784ac134ffec21833485 Mon Sep 17 00:00:00 2001 From: 0xflotus <0xflotus@gmail.com> Date: Fri, 12 Jan 2024 09:54:35 +0100 Subject: [PATCH] v0.4.3 (#8) --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 839a63c..83b56c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -223,7 +223,7 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" [[package]] name = "hcal" -version = "0.4.1" +version = "0.4.3" dependencies = [ "bdays", "cbb", diff --git a/Cargo.toml b/Cargo.toml index 4ee25c7..61f8c44 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcal" -version = "0.4.1" +version = "0.4.3" description = "Hexadecimal calendar for terminal" license = "MIT" authors = ["0xflotus"] diff --git a/src/main.rs b/src/main.rs index 0862325..31ac0df 100644 --- a/src/main.rs +++ b/src/main.rs @@ -16,7 +16,7 @@ use helpers::{cal, fmt, hex}; use clap::{Arg, ArgAction, Command}; fn main() { - let matches = Command::new("hcal").version("0.4.1").about("A hexadecimal calendar for terminal") + let matches = Command::new("hcal").version("0.4.3").about("A hexadecimal calendar for terminal") .arg(Arg::new("year").help("Sets the year")) .arg(Arg::new("month").help("Sets the month")) .arg(Arg::new("day").help("Sets the day"))