From 47fab67164ec052f3faab31175712fcf24594dbd Mon Sep 17 00:00:00 2001 From: Libing Chen Date: Wed, 21 Aug 2024 21:28:18 +0800 Subject: [PATCH] build: update to version 0.23.0 --- Cargo.toml | 4 ++-- src/app.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ea2538a..02740dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "task-keeper" -version = "0.22.2" +version = "0.23.0" edition = "2021" authors = ["linux_china "] description = "Task keeper to manage tasks from different task runners" @@ -41,7 +41,7 @@ cfg-if ="1" uuid = { version = "1", features = ["v4"] } logos = "0.14" shell-escape ="0.1" -update-informer = { version = "1.1.0", default_features = false, features = ["github"] } +update-informer = { version = "1.1.0", default-features = false, features = ["github"] } [profile.release] strip = true diff --git a/src/app.rs b/src/app.rs index 018c447..06d01a9 100644 --- a/src/app.rs +++ b/src/app.rs @@ -1,7 +1,7 @@ //! clap App for command cli use clap::{Command, Arg, ArgAction}; -pub const VERSION: &str = "0.22.2"; +pub const VERSION: &str = "0.23.0"; pub fn build_app() -> Command { Command::new("tk")