diff --git a/CHANGELOG.md b/CHANGELOG.md index e71ac049..37c7fe67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,18 @@ +## [0.13.1](https://github.com/pkgforge/soar/compare/v0.13.0...v0.13.1) - 2026-08-05 + +### ⛰️ Features + +- *(cli)* Add --ipv4 and --ipv6 flags - ([2ee8e22](https://github.com/pkgforge/soar/commit/2ee8e228e25216505685b301d349eab47cd8fb24)) + +### 🐛 Bug Fixes + +- *(cli)* Print info entries in package query format - ([2291b37](https://github.com/pkgforge/soar/commit/2291b3727f5ea47e9dac19b7f691363609cf157f)) +- *(core)* Create system-mode database when writable - ([6b5d35e](https://github.com/pkgforge/soar/commit/6b5d35e57a240e1c90f6e01d7bdf13c6ea560d77)) +- *(dl)* Surface underlying download errors - ([d06823a](https://github.com/pkgforge/soar/commit/d06823a96aa346a4708f0feae74669545304e9cd)) +- *(dl)* Tolerate filesystems without xattr support - ([f7080c3](https://github.com/pkgforge/soar/commit/f7080c32007616712392525c1055ad308a86b684)) +- *(http)* Honor proxy env vars and bound connect time - ([3a43c0f](https://github.com/pkgforge/soar/commit/3a43c0fd79dee8d8331abd8427f618c2066601c5)) + ## [0.13.0](https://github.com/pkgforge/soar/compare/v0.12.7...v0.13.0) - 2026-08-02 ### ⛰️ Features diff --git a/Cargo.lock b/Cargo.lock index faa9a50a..d655c96c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2215,7 +2215,7 @@ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" [[package]] name = "soar-cli" -version = "0.13.0" +version = "0.13.1" dependencies = [ "clap", "clap_complete", @@ -2261,7 +2261,7 @@ dependencies = [ [[package]] name = "soar-core" -version = "0.17.0" +version = "0.17.1" dependencies = [ "chrono", "compak", @@ -2291,7 +2291,7 @@ dependencies = [ [[package]] name = "soar-db" -version = "0.6.0" +version = "0.6.1" dependencies = [ "diesel", "diesel_migrations", @@ -2308,7 +2308,7 @@ dependencies = [ [[package]] name = "soar-dl" -version = "0.11.0" +version = "0.12.0" dependencies = [ "compak", "fast-glob", @@ -2334,7 +2334,7 @@ version = "0.2.0" [[package]] name = "soar-operations" -version = "0.4.0" +version = "0.4.1" dependencies = [ "fast-glob", "minisign-verify", @@ -2373,7 +2373,7 @@ dependencies = [ [[package]] name = "soar-registry" -version = "0.6.0" +version = "0.6.1" dependencies = [ "miette", "minisign-verify", diff --git a/Cargo.toml b/Cargo.toml index b26fbf75..4e28f38d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,13 +61,13 @@ serde_json = { version = "1.0.150", features = ["indexmap"] } serial_test = "3.5.0" sha2 = "0.11.0" soar-config = { version = "0.12.0", path = "crates/soar-config" } -soar-core = { version = "0.17.0", path = "crates/soar-core" } -soar-db = { version = "0.6.0", path = "crates/soar-db" } -soar-dl = { version = "0.11.0", path = "crates/soar-dl" } +soar-core = { version = "0.17.1", path = "crates/soar-core" } +soar-db = { version = "0.6.1", path = "crates/soar-db" } +soar-dl = { version = "0.12.0", path = "crates/soar-dl" } soar-events = { version = "0.2.0", path = "crates/soar-events" } -soar-operations = { version = "0.4.0", path = "crates/soar-operations" } +soar-operations = { version = "0.4.1", path = "crates/soar-operations" } soar-package = { version = "0.5.0", path = "crates/soar-package" } -soar-registry = { version = "0.6.0", path = "crates/soar-registry" } +soar-registry = { version = "0.6.1", path = "crates/soar-registry" } soar-utils = { version = "0.5.0", path = "crates/soar-utils" } squishy = { version = "0.5.1", features = ["appimage", "dwarfs"] } tabled = { version = "0.21", default-features = false, features = ["ansi"] } diff --git a/crates/soar-cli/Cargo.toml b/crates/soar-cli/Cargo.toml index 2b018e19..ef653324 100644 --- a/crates/soar-cli/Cargo.toml +++ b/crates/soar-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-cli" -version = "0.13.0" +version = "0.13.1" description = "A modern package manager for Linux" default-run = "soar" license.workspace = true diff --git a/crates/soar-core/CHANGELOG.md b/crates/soar-core/CHANGELOG.md index 51351544..23103a9a 100644 --- a/crates/soar-core/CHANGELOG.md +++ b/crates/soar-core/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.17.1](https://github.com/pkgforge/soar/compare/soar-core-v0.17.0...soar-core-v0.17.1) - 2026-08-05 + +### 🐛 Bug Fixes + +- *(dl)* Surface underlying download errors - ([d06823a](https://github.com/pkgforge/soar/commit/d06823a96aa346a4708f0feae74669545304e9cd)) + ## [0.17.0](https://github.com/pkgforge/soar/compare/soar-core-v0.16.4...soar-core-v0.17.0) - 2026-08-02 ### ⛰️ Features diff --git a/crates/soar-core/Cargo.toml b/crates/soar-core/Cargo.toml index 55787d5a..3edc4b69 100644 --- a/crates/soar-core/Cargo.toml +++ b/crates/soar-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-core" -version = "0.17.0" +version = "0.17.1" description = "Core library for soar package manager" license.workspace = true edition.workspace = true diff --git a/crates/soar-db/CHANGELOG.md b/crates/soar-db/CHANGELOG.md index ea572c07..e25d1bf6 100644 --- a/crates/soar-db/CHANGELOG.md +++ b/crates/soar-db/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.6.1](https://github.com/pkgforge/soar/compare/soar-db-v0.6.0...soar-db-v0.6.1) - 2026-08-05 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-registry - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.6.0](https://github.com/pkgforge/soar/compare/soar-db-v0.5.5...soar-db-v0.6.0) - 2026-08-02 ### ⛰️ Features diff --git a/crates/soar-db/Cargo.toml b/crates/soar-db/Cargo.toml index bee54911..0108ce37 100644 --- a/crates/soar-db/Cargo.toml +++ b/crates/soar-db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-db" -version = "0.6.0" +version = "0.6.1" description = "Database operations for soar package manager" license.workspace = true edition.workspace = true diff --git a/crates/soar-dl/CHANGELOG.md b/crates/soar-dl/CHANGELOG.md index 817fd691..a1f4c949 100644 --- a/crates/soar-dl/CHANGELOG.md +++ b/crates/soar-dl/CHANGELOG.md @@ -1,4 +1,16 @@ +## [0.12.0](https://github.com/pkgforge/soar/compare/soar-dl-v0.11.0...soar-dl-v0.12.0) - 2026-08-05 + +### ⛰️ Features + +- *(cli)* Add --ipv4 and --ipv6 flags - ([2ee8e22](https://github.com/pkgforge/soar/commit/2ee8e228e25216505685b301d349eab47cd8fb24)) + +### 🐛 Bug Fixes + +- *(dl)* Tolerate filesystems without xattr support - ([f7080c3](https://github.com/pkgforge/soar/commit/f7080c32007616712392525c1055ad308a86b684)) +- *(dl)* Surface underlying download errors - ([d06823a](https://github.com/pkgforge/soar/commit/d06823a96aa346a4708f0feae74669545304e9cd)) +- *(http)* Honor proxy env vars and bound connect time - ([3a43c0f](https://github.com/pkgforge/soar/commit/3a43c0fd79dee8d8331abd8427f618c2066601c5)) + ## [0.11.0](https://github.com/pkgforge/soar/compare/soar-dl-v0.10.2...soar-dl-v0.11.0) - 2026-08-02 ### ⛰️ Features diff --git a/crates/soar-dl/Cargo.toml b/crates/soar-dl/Cargo.toml index 91e86f82..8b893f03 100644 --- a/crates/soar-dl/Cargo.toml +++ b/crates/soar-dl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-dl" -version = "0.11.0" +version = "0.12.0" description = "Downloader for soar package manager" license.workspace = true edition.workspace = true diff --git a/crates/soar-operations/CHANGELOG.md b/crates/soar-operations/CHANGELOG.md index b0374431..433ec06c 100644 --- a/crates/soar-operations/CHANGELOG.md +++ b/crates/soar-operations/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.4.1](https://github.com/pkgforge/soar/compare/soar-operations-v0.4.0...soar-operations-v0.4.1) - 2026-08-05 + +### 🐛 Bug Fixes + +- *(core)* Create system-mode database when writable - ([6b5d35e](https://github.com/pkgforge/soar/commit/6b5d35e57a240e1c90f6e01d7bdf13c6ea560d77)) + ## [0.4.0](https://github.com/pkgforge/soar/compare/soar-operations-v0.3.2...soar-operations-v0.4.0) - 2026-08-02 ### ⛰️ Features diff --git a/crates/soar-operations/Cargo.toml b/crates/soar-operations/Cargo.toml index 8ffb5cf8..8093f8ae 100644 --- a/crates/soar-operations/Cargo.toml +++ b/crates/soar-operations/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-operations" -version = "0.4.0" +version = "0.4.1" description = "Business logic for soar package manager" license.workspace = true edition.workspace = true diff --git a/crates/soar-registry/CHANGELOG.md b/crates/soar-registry/CHANGELOG.md index 4f61aba0..690f99cd 100644 --- a/crates/soar-registry/CHANGELOG.md +++ b/crates/soar-registry/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.6.1](https://github.com/pkgforge/soar/compare/soar-registry-v0.6.0...soar-registry-v0.6.1) - 2026-08-05 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-dl - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.6.0](https://github.com/pkgforge/soar/compare/soar-registry-v0.5.1...soar-registry-v0.6.0) - 2026-08-02 ### ⛰️ Features diff --git a/crates/soar-registry/Cargo.toml b/crates/soar-registry/Cargo.toml index b64d5869..5de69664 100644 --- a/crates/soar-registry/Cargo.toml +++ b/crates/soar-registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-registry" -version = "0.6.0" +version = "0.6.1" description = "Registry management for soar package manager" edition.workspace = true readme.workspace = true