diff --git a/CHANGELOG.md b/CHANGELOG.md index 75411d04..77f8ccd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.12.1](https://github.com/pkgforge/soar/compare/v0.12.0...v0.12.1) - 2026-02-26 + +### ⛰️ Features + +- *(packages)* Add arch_map for custom arch name mapping - ([61c0efb](https://github.com/pkgforge/soar/commit/61c0efb1e95127bde2574480a3971ff2f57e125a)) + ## [0.12.0](https://github.com/pkgforge/soar/compare/v0.11.0...v0.12.0) - 2026-02-24 ### ⛰️ Features diff --git a/Cargo.lock b/Cargo.lock index 5b7b24bd..33186e3a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2211,7 +2211,7 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "soar-cli" -version = "0.12.0" +version = "0.12.1" dependencies = [ "clap", "indicatif", @@ -2242,7 +2242,7 @@ dependencies = [ [[package]] name = "soar-config" -version = "0.6.0" +version = "0.7.0" dependencies = [ "documented", "miette", @@ -2256,7 +2256,7 @@ dependencies = [ [[package]] name = "soar-core" -version = "0.14.0" +version = "0.15.0" dependencies = [ "chrono", "compak", @@ -2283,7 +2283,7 @@ dependencies = [ [[package]] name = "soar-db" -version = "0.5.0" +version = "0.5.1" dependencies = [ "diesel", "diesel_migrations", @@ -2323,7 +2323,7 @@ version = "0.1.0" [[package]] name = "soar-operations" -version = "0.1.0" +version = "0.2.0" dependencies = [ "fast-glob", "minisign-verify", @@ -2343,7 +2343,7 @@ dependencies = [ [[package]] name = "soar-package" -version = "0.3.0" +version = "0.3.1" dependencies = [ "image", "miette", @@ -2357,7 +2357,7 @@ dependencies = [ [[package]] name = "soar-registry" -version = "0.4.0" +version = "0.4.1" dependencies = [ "miette", "serde", diff --git a/Cargo.toml b/Cargo.toml index 02499d2c..cebeb395 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,14 +56,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.6.0", path = "crates/soar-config" } -soar-core = { version = "0.14.0", path = "crates/soar-core" } -soar-db = { version = "0.5.0", path = "crates/soar-db" } +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-dl = { version = "0.9.0", path = "crates/soar-dl" } soar-events = { version = "0.1.0", path = "crates/soar-events" } -soar-operations = { version = "0.1.0", path = "crates/soar-operations" } -soar-package = { version = "0.3.0", path = "crates/soar-package" } -soar-registry = { version = "0.4.0", path = "crates/soar-registry" } +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-utils = { version = "0.4.0", path = "crates/soar-utils" } squishy = { version = "0.4.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 d3159503..b1f6e273 100644 --- a/crates/soar-cli/Cargo.toml +++ b/crates/soar-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-cli" -version = "0.12.0" +version = "0.12.1" 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 0450f9a6..28b2dc7b 100644 --- a/crates/soar-config/CHANGELOG.md +++ b/crates/soar-config/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.7.0](https://github.com/pkgforge/soar/compare/soar-config-v0.6.0...soar-config-v0.7.0) - 2026-02-26 + +### ⛰️ Features + +- *(packages)* Add arch_map for custom arch name mapping - ([61c0efb](https://github.com/pkgforge/soar/commit/61c0efb1e95127bde2574480a3971ff2f57e125a)) + ## [0.6.0](https://github.com/pkgforge/soar/compare/soar-config-v0.5.0...soar-config-v0.6.0) - 2026-02-24 ### 🐛 Bug Fixes diff --git a/crates/soar-config/Cargo.toml b/crates/soar-config/Cargo.toml index 1a9ad56c..a715fa25 100644 --- a/crates/soar-config/Cargo.toml +++ b/crates/soar-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-config" -version = "0.6.0" +version = "0.7.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 a8b59a46..4fc89dd8 100644 --- a/crates/soar-core/CHANGELOG.md +++ b/crates/soar-core/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.15.0](https://github.com/pkgforge/soar/compare/soar-core-v0.14.0...soar-core-v0.15.0) - 2026-02-26 + +### ⛰️ Features + +- *(packages)* Add arch_map for custom arch name mapping - ([61c0efb](https://github.com/pkgforge/soar/commit/61c0efb1e95127bde2574480a3971ff2f57e125a)) + ## [0.14.0](https://github.com/pkgforge/soar/compare/soar-core-v0.13.0...soar-core-v0.14.0) - 2026-02-24 ### ⛰️ Features diff --git a/crates/soar-core/Cargo.toml b/crates/soar-core/Cargo.toml index 1c411e6f..9923ab64 100644 --- a/crates/soar-core/Cargo.toml +++ b/crates/soar-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-core" -version = "0.14.0" +version = "0.15.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 58c9c4cb..164a8ef0 100644 --- a/crates/soar-db/CHANGELOG.md +++ b/crates/soar-db/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.5.1](https://github.com/pkgforge/soar/compare/soar-db-v0.5.0...soar-db-v0.5.1) - 2026-02-26 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-registry - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.5.0](https://github.com/pkgforge/soar/compare/soar-db-v0.4.0...soar-db-v0.5.0) - 2026-02-24 ### ⛰️ Features diff --git a/crates/soar-db/Cargo.toml b/crates/soar-db/Cargo.toml index 33bba897..cc13c2ff 100644 --- a/crates/soar-db/Cargo.toml +++ b/crates/soar-db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-db" -version = "0.5.0" +version = "0.5.1" 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 6cceb062..8e4e14ee 100644 --- a/crates/soar-operations/CHANGELOG.md +++ b/crates/soar-operations/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.2.0](https://github.com/pkgforge/soar/compare/soar-operations-v0.1.0...soar-operations-v0.2.0) - 2026-02-26 + +### ⛰️ Features + +- *(packages)* Add arch_map for custom arch name mapping - ([61c0efb](https://github.com/pkgforge/soar/commit/61c0efb1e95127bde2574480a3971ff2f57e125a)) + ## [0.1.0](https://github.com/pkgforge/soar/compare/soar-operations-v0.0.0...soar-operations-v0.1.0) - 2026-02-24 ### ⛰️ Features diff --git a/crates/soar-operations/Cargo.toml b/crates/soar-operations/Cargo.toml index 44c0d56f..30e46bda 100644 --- a/crates/soar-operations/Cargo.toml +++ b/crates/soar-operations/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-operations" -version = "0.1.0" +version = "0.2.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 65b2cc25..4914e844 100644 --- a/crates/soar-package/CHANGELOG.md +++ b/crates/soar-package/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.3.1](https://github.com/pkgforge/soar/compare/soar-package-v0.3.0...soar-package-v0.3.1) - 2026-02-26 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-config - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.3.0](https://github.com/pkgforge/soar/compare/soar-package-v0.2.3...soar-package-v0.3.0) - 2026-02-24 ### 🐛 Bug Fixes diff --git a/crates/soar-package/Cargo.toml b/crates/soar-package/Cargo.toml index 2147c2d6..5765663f 100644 --- a/crates/soar-package/Cargo.toml +++ b/crates/soar-package/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-package" -version = "0.3.0" +version = "0.3.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 a5d17ea0..479aafaf 100644 --- a/crates/soar-registry/CHANGELOG.md +++ b/crates/soar-registry/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.4.1](https://github.com/pkgforge/soar/compare/soar-registry-v0.4.0...soar-registry-v0.4.1) - 2026-02-26 + +### ⚙️ 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-registry-v0.3.0...soar-registry-v0.4.0) - 2026-02-24 ### 🐛 Bug Fixes diff --git a/crates/soar-registry/Cargo.toml b/crates/soar-registry/Cargo.toml index dcc68a15..1c688251 100644 --- a/crates/soar-registry/Cargo.toml +++ b/crates/soar-registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-registry" -version = "0.4.0" +version = "0.4.1" description = "Registry management for soar package manager" edition.workspace = true readme.workspace = true