From 5c73082dae35023931141baafef916b6cbc4f510 Mon Sep 17 00:00:00 2001 From: Rabindra Dhakal Date: Wed, 24 Jun 2026 08:56:06 +0545 Subject: [PATCH] chore: release --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 14 +++++++------- Cargo.toml | 12 ++++++------ crates/soar-cli/Cargo.toml | 2 +- crates/soar-config/CHANGELOG.md | 6 ++++++ 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 | 6 ++++++ 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, 66 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cdda3ccb..27c53d8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,14 @@ +## [0.12.5](https://github.com/pkgforge/soar/compare/v0.12.4...v0.12.5) - 2026-06-24 + +### ⛰️ Features + +- *(metadata)* Add metadata signature verification - ([ebd1b2f](https://github.com/pkgforge/soar/commit/ebd1b2fc2efea85cbb60289c910325d619c28fe0)) + +### 🐛 Bug Fixes + +- *(cli)* Fix exclude help and fmt - ([5ce4514](https://github.com/pkgforge/soar/commit/5ce45141ba5be6bcdc3f907375f5fd98accd4dbe)) + ## [0.12.4](https://github.com/pkgforge/soar/compare/v0.12.3...v0.12.4) - 2026-06-14 ### ⛰️ Features diff --git a/Cargo.lock b/Cargo.lock index 83e17c58..0736ba2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2203,7 +2203,7 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "soar-cli" -version = "0.12.4" +version = "0.12.5" dependencies = [ "clap", "clap_complete", @@ -2235,7 +2235,7 @@ dependencies = [ [[package]] name = "soar-config" -version = "0.9.0" +version = "0.10.0" dependencies = [ "documented", "miette", @@ -2249,7 +2249,7 @@ dependencies = [ [[package]] name = "soar-core" -version = "0.16.2" +version = "0.16.3" dependencies = [ "chrono", "compak", @@ -2277,7 +2277,7 @@ dependencies = [ [[package]] name = "soar-db" -version = "0.5.3" +version = "0.5.4" dependencies = [ "diesel", "diesel_migrations", @@ -2318,7 +2318,7 @@ version = "0.1.0" [[package]] name = "soar-operations" -version = "0.2.3" +version = "0.3.0" dependencies = [ "fast-glob", "minisign-verify", @@ -2339,7 +2339,7 @@ dependencies = [ [[package]] name = "soar-package" -version = "0.4.0" +version = "0.4.1" dependencies = [ "image", "miette", @@ -2353,7 +2353,7 @@ dependencies = [ [[package]] name = "soar-registry" -version = "0.4.3" +version = "0.5.0" dependencies = [ "miette", "minisign-verify", diff --git a/Cargo.toml b/Cargo.toml index ccc66e76..5af08a05 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,14 +59,14 @@ serde = { version = "1.0.228", features = ["derive"] } serde_json = { version = "1.0.149", features = ["indexmap"] } serial_test = "3.3.1" sha2 = "0.10.9" -soar-config = { version = "0.9.0", path = "crates/soar-config" } -soar-core = { version = "0.16.2", path = "crates/soar-core" } -soar-db = { version = "0.5.3", path = "crates/soar-db" } +soar-config = { version = "0.10.0", path = "crates/soar-config" } +soar-core = { version = "0.16.3", path = "crates/soar-core" } +soar-db = { version = "0.5.4", path = "crates/soar-db" } soar-dl = { version = "0.10.0", path = "crates/soar-dl" } soar-events = { version = "0.1.0", path = "crates/soar-events" } -soar-operations = { version = "0.2.3", path = "crates/soar-operations" } -soar-package = { version = "0.4.0", path = "crates/soar-package" } -soar-registry = { version = "0.4.3", path = "crates/soar-registry" } +soar-operations = { version = "0.3.0", path = "crates/soar-operations" } +soar-package = { version = "0.4.1", path = "crates/soar-package" } +soar-registry = { version = "0.5.0", path = "crates/soar-registry" } soar-utils = { version = "0.4.1", path = "crates/soar-utils" } squishy = { version = "0.5.0", features = ["appimage", "dwarfs"] } tabled = { version = "0.20", features = ["ansi"] } diff --git a/crates/soar-cli/Cargo.toml b/crates/soar-cli/Cargo.toml index 7a8bb751..84bf56c9 100644 --- a/crates/soar-cli/Cargo.toml +++ b/crates/soar-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-cli" -version = "0.12.4" +version = "0.12.5" 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 5279c4ef..b6d856cd 100644 --- a/crates/soar-config/CHANGELOG.md +++ b/crates/soar-config/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.10.0](https://github.com/pkgforge/soar/compare/soar-config-v0.9.0...soar-config-v0.10.0) - 2026-06-24 + +### ⛰️ Features + +- *(metadata)* Add metadata signature verification - ([ebd1b2f](https://github.com/pkgforge/soar/commit/ebd1b2fc2efea85cbb60289c910325d619c28fe0)) + ## [0.9.0](https://github.com/pkgforge/soar/compare/soar-config-v0.8.0...soar-config-v0.9.0) - 2026-06-06 ### ⛰️ Features diff --git a/crates/soar-config/Cargo.toml b/crates/soar-config/Cargo.toml index b5852f92..ac440bbb 100644 --- a/crates/soar-config/Cargo.toml +++ b/crates/soar-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-config" -version = "0.9.0" +version = "0.10.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 d513c62f..60c84afd 100644 --- a/crates/soar-core/CHANGELOG.md +++ b/crates/soar-core/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.16.3](https://github.com/pkgforge/soar/compare/soar-core-v0.16.2...soar-core-v0.16.3) - 2026-06-24 + +### 🐛 Bug Fixes + +- *(cli)* Fix exclude help and fmt - ([5ce4514](https://github.com/pkgforge/soar/commit/5ce45141ba5be6bcdc3f907375f5fd98accd4dbe)) + ## [0.16.2](https://github.com/pkgforge/soar/compare/soar-core-v0.16.1...soar-core-v0.16.2) - 2026-06-14 ### ⛰️ Features diff --git a/crates/soar-core/Cargo.toml b/crates/soar-core/Cargo.toml index db3802d1..c216731e 100644 --- a/crates/soar-core/Cargo.toml +++ b/crates/soar-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-core" -version = "0.16.2" +version = "0.16.3" 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 dd4c8b96..b23a3f4c 100644 --- a/crates/soar-db/CHANGELOG.md +++ b/crates/soar-db/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.5.4](https://github.com/pkgforge/soar/compare/soar-db-v0.5.3...soar-db-v0.5.4) - 2026-06-24 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-registry - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.5.3](https://github.com/pkgforge/soar/compare/soar-db-v0.5.2...soar-db-v0.5.3) - 2026-06-06 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-db/Cargo.toml b/crates/soar-db/Cargo.toml index 0ee2f89e..50acba81 100644 --- a/crates/soar-db/Cargo.toml +++ b/crates/soar-db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-db" -version = "0.5.3" +version = "0.5.4" 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 c152196f..4f6590de 100644 --- a/crates/soar-operations/CHANGELOG.md +++ b/crates/soar-operations/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.3.0](https://github.com/pkgforge/soar/compare/soar-operations-v0.2.3...soar-operations-v0.3.0) - 2026-06-24 + +### ⛰️ Features + +- *(metadata)* Add metadata signature verification - ([ebd1b2f](https://github.com/pkgforge/soar/commit/ebd1b2fc2efea85cbb60289c910325d619c28fe0)) + ## [0.2.3](https://github.com/pkgforge/soar/compare/soar-operations-v0.2.2...soar-operations-v0.2.3) - 2026-06-14 ### ⛰️ Features diff --git a/crates/soar-operations/Cargo.toml b/crates/soar-operations/Cargo.toml index d5c1a632..8979d735 100644 --- a/crates/soar-operations/Cargo.toml +++ b/crates/soar-operations/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-operations" -version = "0.2.3" +version = "0.3.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 b2ba47d5..2a8da25c 100644 --- a/crates/soar-package/CHANGELOG.md +++ b/crates/soar-package/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.4.1](https://github.com/pkgforge/soar/compare/soar-package-v0.4.0...soar-package-v0.4.1) - 2026-06-24 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-config - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.4.0](https://github.com/pkgforge/soar/compare/soar-package-v0.3.3...soar-package-v0.4.0) - 2026-06-14 ### 🐛 Bug Fixes diff --git a/crates/soar-package/Cargo.toml b/crates/soar-package/Cargo.toml index 28b28217..032111c6 100644 --- a/crates/soar-package/Cargo.toml +++ b/crates/soar-package/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-package" -version = "0.4.0" +version = "0.4.1" 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 c5e35c0f..02d8ee67 100644 --- a/crates/soar-registry/CHANGELOG.md +++ b/crates/soar-registry/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.5.0](https://github.com/pkgforge/soar/compare/soar-registry-v0.4.3...soar-registry-v0.5.0) - 2026-06-24 + +### ⛰️ Features + +- *(metadata)* Add metadata signature verification - ([ebd1b2f](https://github.com/pkgforge/soar/commit/ebd1b2fc2efea85cbb60289c910325d619c28fe0)) + ## [0.4.3](https://github.com/pkgforge/soar/compare/soar-registry-v0.4.2...soar-registry-v0.4.3) - 2026-06-06 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-registry/Cargo.toml b/crates/soar-registry/Cargo.toml index e476779e..c2fdaa4a 100644 --- a/crates/soar-registry/Cargo.toml +++ b/crates/soar-registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-registry" -version = "0.4.3" +version = "0.5.0" description = "Registry management for soar package manager" edition.workspace = true readme.workspace = true