diff --git a/CHANGELOG.md b/CHANGELOG.md index a0755be31..f8ac99601 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.12.3](https://github.com/pkgforge/soar/compare/v0.12.2...v0.12.3) - 2026-06-06 + +### ⛰️ Features + +- *(install)* Implicit-trust model for user-declared sources + checksum pinning ([#171](https://github.com/pkgforge/soar/pull/171)) - ([d395448](https://github.com/pkgforge/soar/commit/d395448ffd10a54f28287fefe86380bbda71c674)) + ## [0.12.2](https://github.com/pkgforge/soar/compare/v0.12.1...v0.12.2) - 2026-06-04 ### ⛰️ Features diff --git a/Cargo.lock b/Cargo.lock index da8717027..b842f3f81 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2203,7 +2203,7 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "soar-cli" -version = "0.12.2" +version = "0.12.3" dependencies = [ "clap", "clap_complete", @@ -2235,7 +2235,7 @@ dependencies = [ [[package]] name = "soar-config" -version = "0.8.0" +version = "0.9.0" dependencies = [ "documented", "miette", @@ -2249,7 +2249,7 @@ dependencies = [ [[package]] name = "soar-core" -version = "0.16.0" +version = "0.16.1" dependencies = [ "chrono", "compak", @@ -2277,7 +2277,7 @@ dependencies = [ [[package]] name = "soar-db" -version = "0.5.2" +version = "0.5.3" dependencies = [ "diesel", "diesel_migrations", @@ -2318,7 +2318,7 @@ version = "0.1.0" [[package]] name = "soar-operations" -version = "0.2.1" +version = "0.2.2" dependencies = [ "fast-glob", "minisign-verify", @@ -2339,7 +2339,7 @@ dependencies = [ [[package]] name = "soar-package" -version = "0.3.2" +version = "0.3.3" dependencies = [ "image", "miette", @@ -2353,7 +2353,7 @@ dependencies = [ [[package]] name = "soar-registry" -version = "0.4.2" +version = "0.4.3" dependencies = [ "miette", "serde", diff --git a/Cargo.toml b/Cargo.toml index dcd81c028..44d44e0de 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.8.0", path = "crates/soar-config" } -soar-core = { version = "0.16.0", path = "crates/soar-core" } -soar-db = { version = "0.5.2", path = "crates/soar-db" } +soar-config = { version = "0.9.0", path = "crates/soar-config" } +soar-core = { version = "0.16.1", path = "crates/soar-core" } +soar-db = { version = "0.5.3", 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.1", path = "crates/soar-operations" } -soar-package = { version = "0.3.2", path = "crates/soar-package" } -soar-registry = { version = "0.4.2", path = "crates/soar-registry" } +soar-operations = { version = "0.2.2", path = "crates/soar-operations" } +soar-package = { version = "0.3.3", path = "crates/soar-package" } +soar-registry = { version = "0.4.3", 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 0b6e7c2cd..2b79a3d59 100644 --- a/crates/soar-cli/Cargo.toml +++ b/crates/soar-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-cli" -version = "0.12.2" +version = "0.12.3" 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 b72c10b89..5279c4eff 100644 --- a/crates/soar-config/CHANGELOG.md +++ b/crates/soar-config/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.9.0](https://github.com/pkgforge/soar/compare/soar-config-v0.8.0...soar-config-v0.9.0) - 2026-06-06 + +### ⛰️ Features + +- *(install)* Implicit-trust model for user-declared sources + checksum pinning ([#171](https://github.com/pkgforge/soar/pull/171)) - ([d395448](https://github.com/pkgforge/soar/commit/d395448ffd10a54f28287fefe86380bbda71c674)) + ## [0.8.0](https://github.com/pkgforge/soar/compare/soar-config-v0.7.0...soar-config-v0.8.0) - 2026-06-04 ### ⛰️ Features diff --git a/crates/soar-config/Cargo.toml b/crates/soar-config/Cargo.toml index 872326b0f..b5852f92c 100644 --- a/crates/soar-config/Cargo.toml +++ b/crates/soar-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-config" -version = "0.8.0" +version = "0.9.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 f3f3bb842..879f5069f 100644 --- a/crates/soar-core/CHANGELOG.md +++ b/crates/soar-core/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.16.1](https://github.com/pkgforge/soar/compare/soar-core-v0.16.0...soar-core-v0.16.1) - 2026-06-06 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-config, soar-db, soar-package - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.16.0](https://github.com/pkgforge/soar/compare/soar-core-v0.15.0...soar-core-v0.16.0) - 2026-06-04 ### ⛰️ Features diff --git a/crates/soar-core/Cargo.toml b/crates/soar-core/Cargo.toml index 4da4f68ab..b01ecb9c7 100644 --- a/crates/soar-core/Cargo.toml +++ b/crates/soar-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-core" -version = "0.16.0" +version = "0.16.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 822d156da..dd4c8b961 100644 --- a/crates/soar-db/CHANGELOG.md +++ b/crates/soar-db/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.5.3](https://github.com/pkgforge/soar/compare/soar-db-v0.5.2...soar-db-v0.5.3) - 2026-06-06 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-registry - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.5.2](https://github.com/pkgforge/soar/compare/soar-db-v0.5.1...soar-db-v0.5.2) - 2026-06-04 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-db/Cargo.toml b/crates/soar-db/Cargo.toml index 938b8ecd9..0ee2f89ed 100644 --- a/crates/soar-db/Cargo.toml +++ b/crates/soar-db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-db" -version = "0.5.2" +version = "0.5.3" 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 b8846b7f7..15c60f9a3 100644 --- a/crates/soar-operations/CHANGELOG.md +++ b/crates/soar-operations/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.2.2](https://github.com/pkgforge/soar/compare/soar-operations-v0.2.1...soar-operations-v0.2.2) - 2026-06-06 + +### ⛰️ Features + +- *(install)* Implicit-trust model for user-declared sources + checksum pinning ([#171](https://github.com/pkgforge/soar/pull/171)) - ([d395448](https://github.com/pkgforge/soar/commit/d395448ffd10a54f28287fefe86380bbda71c674)) + ## [0.2.1](https://github.com/pkgforge/soar/compare/soar-operations-v0.2.0...soar-operations-v0.2.1) - 2026-06-04 ### 🐛 Bug Fixes diff --git a/crates/soar-operations/Cargo.toml b/crates/soar-operations/Cargo.toml index fb4ab11d7..9ffd10b1a 100644 --- a/crates/soar-operations/Cargo.toml +++ b/crates/soar-operations/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-operations" -version = "0.2.1" +version = "0.2.2" 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 00402c86f..3d9fa6042 100644 --- a/crates/soar-package/CHANGELOG.md +++ b/crates/soar-package/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.3.3](https://github.com/pkgforge/soar/compare/soar-package-v0.3.2...soar-package-v0.3.3) - 2026-06-06 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-config - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.3.2](https://github.com/pkgforge/soar/compare/soar-package-v0.3.1...soar-package-v0.3.2) - 2026-06-04 ### 🐛 Bug Fixes diff --git a/crates/soar-package/Cargo.toml b/crates/soar-package/Cargo.toml index 1c7989768..099912088 100644 --- a/crates/soar-package/Cargo.toml +++ b/crates/soar-package/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-package" -version = "0.3.2" +version = "0.3.3" 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 a8a981165..c5e35c0f3 100644 --- a/crates/soar-registry/CHANGELOG.md +++ b/crates/soar-registry/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.4.3](https://github.com/pkgforge/soar/compare/soar-registry-v0.4.2...soar-registry-v0.4.3) - 2026-06-06 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-config - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.4.2](https://github.com/pkgforge/soar/compare/soar-registry-v0.4.1...soar-registry-v0.4.2) - 2026-06-04 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-registry/Cargo.toml b/crates/soar-registry/Cargo.toml index fc0a80c18..f6a05d90e 100644 --- a/crates/soar-registry/Cargo.toml +++ b/crates/soar-registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-registry" -version = "0.4.2" +version = "0.4.3" description = "Registry management for soar package manager" edition.workspace = true readme.workspace = true