diff --git a/CHANGELOG.md b/CHANGELOG.md index 86489dcc..1fc802d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,15 @@ +## [0.12.2](https://github.com/pkgforge/soar/compare/v0.12.1...v0.12.2) - 2026-05-04 + +### ⛰️ Features + +- *(cli)* Add shell completions command - ([401fb04](https://github.com/pkgforge/soar/commit/401fb0466844bd05acdb5d847e19d0dcd5d4141b)) +- *(sandbox)* Add enabled flag and global defaults - ([a3a4431](https://github.com/pkgforge/soar/commit/a3a4431873a79da17e1c4026846ebd44ea24ab71)) + +### 🐛 Bug Fixes + +- *(progress)* Emit build/hook events to clear spinner during build - ([306f001](https://github.com/pkgforge/soar/commit/306f00120e23834658d17b82bfc3eec6f22280d3)) + ## [0.12.1](https://github.com/pkgforge/soar/compare/v0.12.0...v0.12.1) - 2026-04-10 ### ⛰️ Features diff --git a/Cargo.lock b/Cargo.lock index d28db3f0..ac8f35bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2203,7 +2203,7 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "soar-cli" -version = "0.12.1" +version = "0.12.2" dependencies = [ "clap", "clap_complete", @@ -2235,7 +2235,7 @@ dependencies = [ [[package]] name = "soar-config" -version = "0.7.0" +version = "0.8.0" dependencies = [ "documented", "miette", @@ -2249,7 +2249,7 @@ dependencies = [ [[package]] name = "soar-core" -version = "0.15.0" +version = "0.16.0" dependencies = [ "chrono", "compak", @@ -2277,7 +2277,7 @@ dependencies = [ [[package]] name = "soar-db" -version = "0.5.1" +version = "0.5.2" dependencies = [ "diesel", "diesel_migrations", @@ -2317,7 +2317,7 @@ version = "0.1.0" [[package]] name = "soar-operations" -version = "0.2.0" +version = "0.2.1" dependencies = [ "fast-glob", "minisign-verify", @@ -2338,7 +2338,7 @@ dependencies = [ [[package]] name = "soar-package" -version = "0.3.1" +version = "0.3.2" dependencies = [ "image", "miette", @@ -2352,7 +2352,7 @@ dependencies = [ [[package]] name = "soar-registry" -version = "0.4.1" +version = "0.4.2" dependencies = [ "miette", "serde", diff --git a/Cargo.toml b/Cargo.toml index 5d7a2115..5e4332cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,14 +58,14 @@ semver = "1.0.27" serde = { version = "1.0.228", features = ["derive"] } serde_json = { version = "1.0.149", features = ["indexmap"] } serial_test = "3.3.1" -soar-config = { version = "0.7.0", path = "crates/soar-config" } -soar-core = { version = "0.15.0", path = "crates/soar-core" } -soar-db = { version = "0.5.1", path = "crates/soar-db" } +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-dl = { version = "0.9.1", path = "crates/soar-dl" } soar-events = { version = "0.1.0", path = "crates/soar-events" } -soar-operations = { version = "0.2.0", path = "crates/soar-operations" } -soar-package = { version = "0.3.1", path = "crates/soar-package" } -soar-registry = { version = "0.4.1", path = "crates/soar-registry" } +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-utils = { version = "0.4.0", 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 14b14b8d..0b6e7c2c 100644 --- a/crates/soar-cli/Cargo.toml +++ b/crates/soar-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-cli" -version = "0.12.1" +version = "0.12.2" 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 cb922786..34b8c560 100644 --- a/crates/soar-config/CHANGELOG.md +++ b/crates/soar-config/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.8.0](https://github.com/pkgforge/soar/compare/soar-config-v0.7.0...soar-config-v0.8.0) - 2026-05-04 + +### ⛰️ Features + +- *(sandbox)* Add enabled flag and global defaults - ([a3a4431](https://github.com/pkgforge/soar/commit/a3a4431873a79da17e1c4026846ebd44ea24ab71)) + ## [0.7.0](https://github.com/pkgforge/soar/compare/soar-config-v0.6.0...soar-config-v0.7.0) - 2026-04-10 ### ⛰️ Features diff --git a/crates/soar-config/Cargo.toml b/crates/soar-config/Cargo.toml index a715fa25..872326b0 100644 --- a/crates/soar-config/Cargo.toml +++ b/crates/soar-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-config" -version = "0.7.0" +version = "0.8.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 a4b099d2..cc7b240a 100644 --- a/crates/soar-core/CHANGELOG.md +++ b/crates/soar-core/CHANGELOG.md @@ -1,4 +1,14 @@ +## [0.16.0](https://github.com/pkgforge/soar/compare/soar-core-v0.15.0...soar-core-v0.16.0) - 2026-05-04 + +### ⛰️ Features + +- *(sandbox)* Add enabled flag and global defaults - ([a3a4431](https://github.com/pkgforge/soar/commit/a3a4431873a79da17e1c4026846ebd44ea24ab71)) + +### 🐛 Bug Fixes + +- *(progress)* Emit build/hook events to clear spinner during build - ([306f001](https://github.com/pkgforge/soar/commit/306f00120e23834658d17b82bfc3eec6f22280d3)) + ## [0.15.0](https://github.com/pkgforge/soar/compare/soar-core-v0.14.0...soar-core-v0.15.0) - 2026-04-10 ### ⛰️ Features diff --git a/crates/soar-core/Cargo.toml b/crates/soar-core/Cargo.toml index 80122cc5..4da4f68a 100644 --- a/crates/soar-core/Cargo.toml +++ b/crates/soar-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-core" -version = "0.15.0" +version = "0.16.0" 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 0c0c2969..16e09a00 100644 --- a/crates/soar-db/CHANGELOG.md +++ b/crates/soar-db/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.5.2](https://github.com/pkgforge/soar/compare/soar-db-v0.5.1...soar-db-v0.5.2) - 2026-05-04 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-registry - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.5.1](https://github.com/pkgforge/soar/compare/soar-db-v0.5.0...soar-db-v0.5.1) - 2026-04-10 ### ⛰️ Features diff --git a/crates/soar-db/Cargo.toml b/crates/soar-db/Cargo.toml index cc13c2ff..938b8ecd 100644 --- a/crates/soar-db/Cargo.toml +++ b/crates/soar-db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-db" -version = "0.5.1" +version = "0.5.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 9e81f2d5..cd3313e6 100644 --- a/crates/soar-operations/CHANGELOG.md +++ b/crates/soar-operations/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.2.1](https://github.com/pkgforge/soar/compare/soar-operations-v0.2.0...soar-operations-v0.2.1) - 2026-05-04 + +### 🐛 Bug Fixes + +- *(progress)* Emit build/hook events to clear spinner during build - ([306f001](https://github.com/pkgforge/soar/commit/306f00120e23834658d17b82bfc3eec6f22280d3)) + ## [0.2.0](https://github.com/pkgforge/soar/compare/soar-operations-v0.1.0...soar-operations-v0.2.0) - 2026-04-10 ### ⛰️ Features diff --git a/crates/soar-operations/Cargo.toml b/crates/soar-operations/Cargo.toml index 307c7d68..fb4ab11d 100644 --- a/crates/soar-operations/Cargo.toml +++ b/crates/soar-operations/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-operations" -version = "0.2.0" +version = "0.2.1" 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 154b188f..d3489030 100644 --- a/crates/soar-package/CHANGELOG.md +++ b/crates/soar-package/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.3.2](https://github.com/pkgforge/soar/compare/soar-package-v0.3.1...soar-package-v0.3.2) - 2026-05-04 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-config - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.3.1](https://github.com/pkgforge/soar/compare/soar-package-v0.3.0...soar-package-v0.3.1) - 2026-04-10 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-package/Cargo.toml b/crates/soar-package/Cargo.toml index 5765663f..1c798976 100644 --- a/crates/soar-package/Cargo.toml +++ b/crates/soar-package/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-package" -version = "0.3.1" +version = "0.3.2" 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 6c208a39..ca29b1a1 100644 --- a/crates/soar-registry/CHANGELOG.md +++ b/crates/soar-registry/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.4.2](https://github.com/pkgforge/soar/compare/soar-registry-v0.4.1...soar-registry-v0.4.2) - 2026-05-04 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-config - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.4.1](https://github.com/pkgforge/soar/compare/soar-registry-v0.4.0...soar-registry-v0.4.1) - 2026-04-10 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-registry/Cargo.toml b/crates/soar-registry/Cargo.toml index 1c688251..fc0a80c1 100644 --- a/crates/soar-registry/Cargo.toml +++ b/crates/soar-registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-registry" -version = "0.4.1" +version = "0.4.2" description = "Registry management for soar package manager" edition.workspace = true readme.workspace = true