From 9514dd9cc2d62447efaf85b3dd4f7a256cf5b343 Mon Sep 17 00:00:00 2001 From: sokorototo Date: Wed, 13 Mar 2024 18:57:50 +0300 Subject: [PATCH] bumped version of vach-cli --- Cargo.lock | 2 +- vach-cli/Cargo.toml | 2 +- vach-cli/src/commands/unpack.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9da29f99..2efd7534 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1256,7 +1256,7 @@ dependencies = [ [[package]] name = "vach-cli" -version = "0.5.5" +version = "0.5.6" dependencies = [ "anyhow", "clap 3.2.25", diff --git a/vach-cli/Cargo.toml b/vach-cli/Cargo.toml index 88d54bbd..fa2449c3 100644 --- a/vach-cli/Cargo.toml +++ b/vach-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vach-cli" -version = "0.5.5" +version = "0.5.6" edition = "2021" authors = [ "Jasper Fortuin ", diff --git a/vach-cli/src/commands/unpack.rs b/vach-cli/src/commands/unpack.rs index 86cde3ca..d9cfdb7c 100644 --- a/vach-cli/src/commands/unpack.rs +++ b/vach-cli/src/commands/unpack.rs @@ -12,7 +12,7 @@ use indicatif::{ProgressBar, ProgressStyle}; use super::CommandTrait; use crate::keys::key_names; -pub const VERSION: &str = "0.1.0"; +pub const VERSION: &str = "0.1.1"; /// This command extracts an archive into the specified output folder pub struct Evaluator;