From b91656f8e99185211fd3f2f26d74e3d10e9da469 Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Sat, 18 Jan 2025 17:46:19 -0600 Subject: [PATCH] Bump version and add release date to `Changes.md` --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- Changes.md | 2 +- ubi-cli/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3ae10c6..5b874d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2236,7 +2236,7 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" [[package]] name = "ubi" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "async-trait", @@ -2270,7 +2270,7 @@ dependencies = [ [[package]] name = "ubi-cli" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 9a14358..ebd7dab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/houseabsolute/ubi" -version = "0.4.0" +version = "0.4.1" [workspace] members = ["ubi", "ubi-cli"] diff --git a/Changes.md b/Changes.md index 0a8bd70..727c79e 100644 --- a/Changes.md +++ b/Changes.md @@ -1,4 +1,4 @@ -## $NEXT +## 0.4.1 - 2025-01-18 - Fixed a bug where `ubi` where zip files containing a directory that matched the expected executable name caused `ubi` to extract the directory instead of the actual executable, resulting diff --git a/ubi-cli/Cargo.toml b/ubi-cli/Cargo.toml index fbd2219..4b2ae67 100644 --- a/ubi-cli/Cargo.toml +++ b/ubi-cli/Cargo.toml @@ -16,7 +16,7 @@ strum.workspace = true tempfile.workspace = true thiserror.workspace = true tokio.workspace = true -ubi = { version = "0.4.0", path = "../ubi", features = ["default", "logging"] } +ubi = { version = "0.4.1", path = "../ubi", features = ["default", "logging"] } [dev-dependencies] which.workspace = true