From 4ddc1fa4bdad61d88b802af4e7a376f68511ee5e Mon Sep 17 00:00:00 2001 From: edgarriba Date: Tue, 19 May 2026 15:39:07 +0200 Subject: [PATCH] chore(release): v0.0.15 Patch release: install script auto-installs missing unzip/curl on fresh Ubuntu/Debian/Fedora/Alpine/Arch boxes, instead of bailing out. Verified against a stock ubuntu:24.04 arm64 container (#102). Co-Authored-By: Claude Sonnet 4.6 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f114c9a..0b8f1c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.0.15](https://github.com/kornia/bubbaloop/compare/v0.0.14...v0.0.15) (2026-05-19) + +### Bug Fixes + +* **install:** auto-install missing `unzip` (and `curl`) via the host package manager — apt-get / dnf / yum / apk / pacman. Previously the installer bailed with `Missing required dependencies: unzip` on every minimal Ubuntu/Debian box, because `unzip` isn't installed by default there. Falls back to a clear per-distro install hint if no recognized package manager or sudo is available. ([#102](https://github.com/kornia/bubbaloop/pull/102)) + ## [0.0.14](https://github.com/kornia/bubbaloop/compare/v0.0.13...v0.0.14) (2026-05-19) ### Features diff --git a/Cargo.lock b/Cargo.lock index 8f1c7fd..a41185b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -351,7 +351,7 @@ dependencies = [ [[package]] name = "bubbaloop" -version = "0.0.14" +version = "0.0.15" dependencies = [ "anyhow", "argh", diff --git a/Cargo.toml b/Cargo.toml index bd575b9..1560e6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.0.14" +version = "0.0.15" authors = ["Edgar Riba "] license = "Apache-2.0" edition = "2021"