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"