From c883c8da1e01c2afde26b4cddf1757e97743eca0 Mon Sep 17 00:00:00 2001 From: Rabindra Dhakal Date: Sat, 5 Sep 2026 23:15:30 +0545 Subject: [PATCH] chore: release --- CHANGELOG.md | 14 ++++++++++++++ Cargo.lock | 14 +++++++------- Cargo.toml | 12 ++++++------ crates/soar-cli/Cargo.toml | 2 +- crates/soar-config/CHANGELOG.md | 10 ++++++++++ crates/soar-config/Cargo.toml | 2 +- crates/soar-core/CHANGELOG.md | 6 ++++++ crates/soar-core/Cargo.toml | 2 +- crates/soar-db/CHANGELOG.md | 6 ++++++ crates/soar-db/Cargo.toml | 2 +- crates/soar-operations/CHANGELOG.md | 8 ++++++++ crates/soar-operations/Cargo.toml | 2 +- crates/soar-package/CHANGELOG.md | 6 ++++++ crates/soar-package/Cargo.toml | 2 +- crates/soar-registry/CHANGELOG.md | 6 ++++++ crates/soar-registry/Cargo.toml | 2 +- 16 files changed, 76 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e070d153..544c52a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,18 @@ +## [0.13.4](https://github.com/pkgforge/soar/compare/v0.13.3...v0.13.4) - 2026-09-05 + +### ⛰️ Features + +- *(apply)* Add system = true for system-wide packages - ([57a6f9e](https://github.com/pkgforge/soar/commit/57a6f9e062140c60312e7b2e577a9dbe8ef21485)) + +### 🐛 Bug Fixes + +- *(apply)* Write version updates to the file being applied - ([7ac7cf0](https://github.com/pkgforge/soar/commit/7ac7cf02871163a38ddc315019206834e77b9601)) +- *(apply)* Make "*" install the newest and stay unpinned - ([8ddda1c](https://github.com/pkgforge/soar/commit/8ddda1c3a3de3852284986aa3d2138645d638df9)) +- *(install)* Show only the newest of each package in the picker - ([7aab102](https://github.com/pkgforge/soar/commit/7aab102c4a3d1eedb92d57d621ff3ef982bf0521)) +- *(integrate)* Derive icon name from the desktop entry name - ([1a01304](https://github.com/pkgforge/soar/commit/1a0130415a03692d532aec9f202effcca54c8e55)) +- *(system)* Read packages.toml from /etc in system mode - ([4a35364](https://github.com/pkgforge/soar/commit/4a353647863c5821f1d36de596544016cacffd5a)) + ## [0.13.3](https://github.com/pkgforge/soar/compare/v0.13.2...v0.13.3) - 2026-08-31 ### ⛰️ Features diff --git a/Cargo.lock b/Cargo.lock index f23bc21b..2d2ef796 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2219,7 +2219,7 @@ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" [[package]] name = "soar-cli" -version = "0.13.3" +version = "0.13.4" dependencies = [ "clap", "clap_complete", @@ -2251,7 +2251,7 @@ dependencies = [ [[package]] name = "soar-config" -version = "0.12.2" +version = "0.13.0" dependencies = [ "documented", "miette", @@ -2265,7 +2265,7 @@ dependencies = [ [[package]] name = "soar-core" -version = "0.17.3" +version = "0.17.4" dependencies = [ "chrono", "compak", @@ -2295,7 +2295,7 @@ dependencies = [ [[package]] name = "soar-db" -version = "0.7.1" +version = "0.7.2" dependencies = [ "diesel", "diesel_migrations", @@ -2342,7 +2342,7 @@ dependencies = [ [[package]] name = "soar-operations" -version = "0.5.1" +version = "0.6.0" dependencies = [ "fast-glob", "minisign-verify", @@ -2364,7 +2364,7 @@ dependencies = [ [[package]] name = "soar-package" -version = "0.5.2" +version = "0.6.0" dependencies = [ "image", "miette", @@ -2382,7 +2382,7 @@ dependencies = [ [[package]] name = "soar-registry" -version = "0.6.3" +version = "0.6.4" dependencies = [ "miette", "minisign-verify", diff --git a/Cargo.toml b/Cargo.toml index 37cf7283..39edef65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,14 +60,14 @@ serde = { version = "1.0.229", features = ["derive"] } serde_json = { version = "1.0.151", features = ["indexmap"] } serial_test = "3.5.0" sha2 = "0.11.0" -soar-config = { version = "0.12.2", path = "crates/soar-config" } -soar-core = { version = "0.17.3", path = "crates/soar-core" } -soar-db = { version = "0.7.1", path = "crates/soar-db" } +soar-config = { version = "0.13.0", path = "crates/soar-config" } +soar-core = { version = "0.17.4", path = "crates/soar-core" } +soar-db = { version = "0.7.2", path = "crates/soar-db" } soar-dl = { version = "0.12.2", path = "crates/soar-dl" } soar-events = { version = "0.3.1", path = "crates/soar-events" } -soar-operations = { version = "0.5.1", path = "crates/soar-operations" } -soar-package = { version = "0.5.2", path = "crates/soar-package" } -soar-registry = { version = "0.6.3", path = "crates/soar-registry" } +soar-operations = { version = "0.6.0", path = "crates/soar-operations" } +soar-package = { version = "0.6.0", path = "crates/soar-package" } +soar-registry = { version = "0.6.4", path = "crates/soar-registry" } soar-utils = { version = "0.5.2", 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 3f4b526d..96b505c9 100644 --- a/crates/soar-cli/Cargo.toml +++ b/crates/soar-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-cli" -version = "0.13.3" +version = "0.13.4" description = "A modern package manager for Linux" default-run = "soar" license.workspace = true diff --git a/crates/soar-config/CHANGELOG.md b/crates/soar-config/CHANGELOG.md index d7b014c1..a8658410 100644 --- a/crates/soar-config/CHANGELOG.md +++ b/crates/soar-config/CHANGELOG.md @@ -1,4 +1,14 @@ +## [0.13.0](https://github.com/pkgforge/soar/compare/soar-config-v0.12.2...soar-config-v0.13.0) - 2026-09-05 + +### ⛰️ Features + +- *(apply)* Add system = true for system-wide packages - ([57a6f9e](https://github.com/pkgforge/soar/commit/57a6f9e062140c60312e7b2e577a9dbe8ef21485)) + +### 🐛 Bug Fixes + +- *(system)* Read packages.toml from /etc in system mode - ([4a35364](https://github.com/pkgforge/soar/commit/4a353647863c5821f1d36de596544016cacffd5a)) + ## [0.12.2](https://github.com/pkgforge/soar/compare/soar-config-v0.12.1...soar-config-v0.12.2) - 2026-08-31 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-config/Cargo.toml b/crates/soar-config/Cargo.toml index 9c91cf2b..99e06d22 100644 --- a/crates/soar-config/Cargo.toml +++ b/crates/soar-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-config" -version = "0.12.2" +version = "0.13.0" description = "Configuration management for soar package manager" edition.workspace = true readme.workspace = true diff --git a/crates/soar-core/CHANGELOG.md b/crates/soar-core/CHANGELOG.md index 9380a90b..af1db3ed 100644 --- a/crates/soar-core/CHANGELOG.md +++ b/crates/soar-core/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.17.4](https://github.com/pkgforge/soar/compare/soar-core-v0.17.3...soar-core-v0.17.4) - 2026-09-05 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-config, soar-package, soar-db - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.17.3](https://github.com/pkgforge/soar/compare/soar-core-v0.17.2...soar-core-v0.17.3) - 2026-08-31 ### 🐛 Bug Fixes diff --git a/crates/soar-core/Cargo.toml b/crates/soar-core/Cargo.toml index 237888f9..7e2fcbc6 100644 --- a/crates/soar-core/Cargo.toml +++ b/crates/soar-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-core" -version = "0.17.3" +version = "0.17.4" 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 844042b6..2df4d3b8 100644 --- a/crates/soar-db/CHANGELOG.md +++ b/crates/soar-db/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.7.2](https://github.com/pkgforge/soar/compare/soar-db-v0.7.1...soar-db-v0.7.2) - 2026-09-05 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-registry - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.7.1](https://github.com/pkgforge/soar/compare/soar-db-v0.7.0...soar-db-v0.7.1) - 2026-08-31 ### 🐛 Bug Fixes diff --git a/crates/soar-db/Cargo.toml b/crates/soar-db/Cargo.toml index 1b34b8b2..c17f26ce 100644 --- a/crates/soar-db/Cargo.toml +++ b/crates/soar-db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-db" -version = "0.7.1" +version = "0.7.2" description = "Database operations 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 3ebecd4a..416e34f1 100644 --- a/crates/soar-operations/CHANGELOG.md +++ b/crates/soar-operations/CHANGELOG.md @@ -1,4 +1,12 @@ +## [0.6.0](https://github.com/pkgforge/soar/compare/soar-operations-v0.5.1...soar-operations-v0.6.0) - 2026-09-05 + +### 🐛 Bug Fixes + +- *(apply)* Make "*" install the newest and stay unpinned - ([8ddda1c](https://github.com/pkgforge/soar/commit/8ddda1c3a3de3852284986aa3d2138645d638df9)) +- *(apply)* Write version updates to the file being applied - ([7ac7cf0](https://github.com/pkgforge/soar/commit/7ac7cf02871163a38ddc315019206834e77b9601)) +- *(install)* Show only the newest of each package in the picker - ([7aab102](https://github.com/pkgforge/soar/commit/7aab102c4a3d1eedb92d57d621ff3ef982bf0521)) + ## [0.5.1](https://github.com/pkgforge/soar/compare/soar-operations-v0.5.0...soar-operations-v0.5.1) - 2026-08-31 ### ⛰️ Features diff --git a/crates/soar-operations/Cargo.toml b/crates/soar-operations/Cargo.toml index 81a63dc2..38b8ef68 100644 --- a/crates/soar-operations/Cargo.toml +++ b/crates/soar-operations/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-operations" -version = "0.5.1" +version = "0.6.0" description = "Business logic for soar package manager" license.workspace = true edition.workspace = true diff --git a/crates/soar-package/CHANGELOG.md b/crates/soar-package/CHANGELOG.md index bcc21081..f0dda827 100644 --- a/crates/soar-package/CHANGELOG.md +++ b/crates/soar-package/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.6.0](https://github.com/pkgforge/soar/compare/soar-package-v0.5.2...soar-package-v0.6.0) - 2026-09-05 + +### 🐛 Bug Fixes + +- *(integrate)* Derive icon name from the desktop entry name - ([1a01304](https://github.com/pkgforge/soar/commit/1a0130415a03692d532aec9f202effcca54c8e55)) + ## [0.5.2](https://github.com/pkgforge/soar/compare/soar-package-v0.5.1...soar-package-v0.5.2) - 2026-08-31 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-package/Cargo.toml b/crates/soar-package/Cargo.toml index 97d7c4ef..5c988fa4 100644 --- a/crates/soar-package/Cargo.toml +++ b/crates/soar-package/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-package" -version = "0.5.2" +version = "0.6.0" description = "Package format handling for soar package manager" edition.workspace = true readme.workspace = true diff --git a/crates/soar-registry/CHANGELOG.md b/crates/soar-registry/CHANGELOG.md index 6da78a94..d8120d80 100644 --- a/crates/soar-registry/CHANGELOG.md +++ b/crates/soar-registry/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.6.4](https://github.com/pkgforge/soar/compare/soar-registry-v0.6.3...soar-registry-v0.6.4) - 2026-09-05 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-config - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.6.3](https://github.com/pkgforge/soar/compare/soar-registry-v0.6.2...soar-registry-v0.6.3) - 2026-08-31 ### 🐛 Bug Fixes diff --git a/crates/soar-registry/Cargo.toml b/crates/soar-registry/Cargo.toml index f6085cd9..507cd0c4 100644 --- a/crates/soar-registry/Cargo.toml +++ b/crates/soar-registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-registry" -version = "0.6.3" +version = "0.6.4" description = "Registry management for soar package manager" edition.workspace = true readme.workspace = true