From 9b61af829f0e98d21944c39e10508ba31dc73b1c Mon Sep 17 00:00:00 2001 From: Manuel <2084639+tennox@users.noreply.github.com> Date: Wed, 15 Apr 2026 10:48:17 +0100 Subject: [PATCH] fix: app.rs version from 0.32.0 to 0.33.0 since 0.33 is released already..? --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index 77eaee4..daf3633 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.32.0"; +pub const VERSION: &str = "0.33.0"; pub fn build_app() -> Command { Command::new("tk")