diff --git a/Cargo.lock b/Cargo.lock index 2643f44..dea8917 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13,7 +13,7 @@ dependencies = [ [[package]] name = "arenta" -version = "1.0.1" +version = "1.0.2" dependencies = [ "chrono", "colored", diff --git a/Cargo.toml b/Cargo.toml index 0895c26..6bc1ec1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arenta" -version = "1.0.1" +version = "1.0.2" description = "A terminal-based daily task management tool with minimal overhead" authors = ["Gusabary "] keywords = ["cli", "terminal", "productivity", "tasks"] diff --git a/README.md b/README.md index aeef3db..28257fd 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Arenta -![](https://img.shields.io/badge/version-v1.0.1-9cf) ![](https://img.shields.io/badge/license-MIT-blue) +![](https://img.shields.io/badge/version-v1.0.2-9cf) ![](https://img.shields.io/badge/license-MIT-blue) A terminal-based daily task management tool with minimal overhead. diff --git a/src/main.rs b/src/main.rs index 448fb9b..1f95251 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,7 +8,7 @@ mod task; mod timeline; fn print_version() { - const VERSION: &str = "v1.0.1"; + const VERSION: &str = "v1.0.2"; println!("arenta {VERSION}"); }