diff --git a/CHANGELOG.md b/CHANGELOG.md index 05778b57..d7de293f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ +## [0.10.3](https://github.com/pkgforge/soar/compare/v0.10.2...v0.10.3) - 2026-01-18 + +### ⛰️ Features + +- *(config)* Add placeholder support and remove update field - ([824d060](https://github.com/pkgforge/soar/commit/824d0600b342ad5c921fffb3677102377f74ec47)) +- *(config)* Make link_as optional and add glob support in binary maps - ([c3945ee](https://github.com/pkgforge/soar/commit/c3945ee556b00713d9f71eb5119a7580d19d6ce1)) + ## [0.10.2](https://github.com/pkgforge/soar/compare/v0.10.1...v0.10.2) - 2026-01-17 ### 🐛 Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index f6f9b8df..33ba84a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2211,7 +2211,7 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "soar-cli" -version = "0.10.2" +version = "0.10.3" dependencies = [ "clap", "fast-glob", @@ -2244,7 +2244,7 @@ dependencies = [ [[package]] name = "soar-config" -version = "0.3.0" +version = "0.4.0" dependencies = [ "documented", "miette", @@ -2258,7 +2258,7 @@ dependencies = [ [[package]] name = "soar-core" -version = "0.11.1" +version = "0.12.0" dependencies = [ "chrono", "compak", @@ -2286,7 +2286,7 @@ dependencies = [ [[package]] name = "soar-db" -version = "0.3.1" +version = "0.3.2" dependencies = [ "diesel", "diesel_migrations", @@ -2322,7 +2322,7 @@ dependencies = [ [[package]] name = "soar-package" -version = "0.2.1" +version = "0.2.2" dependencies = [ "image", "miette", @@ -2336,7 +2336,7 @@ dependencies = [ [[package]] name = "soar-registry" -version = "0.2.1" +version = "0.2.2" dependencies = [ "miette", "serde", diff --git a/Cargo.toml b/Cargo.toml index 995d652f..45fe3718 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,12 +48,12 @@ regex = { version = "1.12.2", default-features = false, features = [ serde = { version = "1.0.228", features = ["derive"] } serde_json = { version = "1.0.149", features = ["indexmap"] } serial_test = "3.3.1" -soar-config = { version = "0.3.0", path = "crates/soar-config" } -soar-core = { version = "0.11.1", path = "crates/soar-core" } -soar-db = { version = "0.3.1", path = "crates/soar-db" } +soar-config = { version = "0.4.0", path = "crates/soar-config" } +soar-core = { version = "0.12.0", path = "crates/soar-core" } +soar-db = { version = "0.3.2", path = "crates/soar-db" } soar-dl = { version = "0.7.2", path = "crates/soar-dl" } -soar-package = { version = "0.2.1", path = "crates/soar-package" } -soar-registry = { version = "0.2.1", path = "crates/soar-registry" } +soar-package = { version = "0.2.2", path = "crates/soar-package" } +soar-registry = { version = "0.2.2", path = "crates/soar-registry" } soar-utils = { version = "0.2.0", path = "crates/soar-utils" } squishy = { version = "0.4.0", features = ["appimage", "dwarfs"] } tempfile = "3.24.0" diff --git a/crates/soar-cli/Cargo.toml b/crates/soar-cli/Cargo.toml index e831f047..41f8fd16 100644 --- a/crates/soar-cli/Cargo.toml +++ b/crates/soar-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-cli" -version = "0.10.2" +version = "0.10.3" description = "A modern package manager for Linux" default-run = "soar" authors.workspace = true diff --git a/crates/soar-config/CHANGELOG.md b/crates/soar-config/CHANGELOG.md index fb4f50bc..9bd165e8 100644 --- a/crates/soar-config/CHANGELOG.md +++ b/crates/soar-config/CHANGELOG.md @@ -1,4 +1,11 @@ +## [0.4.0](https://github.com/pkgforge/soar/compare/soar-config-v0.3.0...soar-config-v0.4.0) - 2026-01-18 + +### ⛰️ Features + +- *(config)* Add placeholder support and remove update field - ([824d060](https://github.com/pkgforge/soar/commit/824d0600b342ad5c921fffb3677102377f74ec47)) +- *(config)* Make link_as optional and add glob support in binary maps - ([c3945ee](https://github.com/pkgforge/soar/commit/c3945ee556b00713d9f71eb5119a7580d19d6ce1)) + ## [0.3.0](https://github.com/pkgforge/soar/compare/soar-config-v0.2.0...soar-config-v0.3.0) - 2026-01-17 ### 🐛 Bug Fixes diff --git a/crates/soar-config/Cargo.toml b/crates/soar-config/Cargo.toml index 01a5a2a0..7795e7a5 100644 --- a/crates/soar-config/Cargo.toml +++ b/crates/soar-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-config" -version = "0.3.0" +version = "0.4.0" description = "Configuration management for soar package manager" authors.workspace = true edition.workspace = true diff --git a/crates/soar-core/CHANGELOG.md b/crates/soar-core/CHANGELOG.md index a1a68059..7b242bde 100644 --- a/crates/soar-core/CHANGELOG.md +++ b/crates/soar-core/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.12.0](https://github.com/pkgforge/soar/compare/soar-core-v0.11.1...soar-core-v0.12.0) - 2026-01-18 + +### ⛰️ Features + +- *(config)* Add placeholder support and remove update field - ([824d060](https://github.com/pkgforge/soar/commit/824d0600b342ad5c921fffb3677102377f74ec47)) + ## [0.11.1](https://github.com/pkgforge/soar/compare/soar-core-v0.11.0...soar-core-v0.11.1) - 2026-01-17 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-core/Cargo.toml b/crates/soar-core/Cargo.toml index 28043a41..3a25eec5 100644 --- a/crates/soar-core/Cargo.toml +++ b/crates/soar-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-core" -version = "0.11.1" +version = "0.12.0" description = "Core library for soar package manager" authors.workspace = true license.workspace = true diff --git a/crates/soar-db/CHANGELOG.md b/crates/soar-db/CHANGELOG.md index 695101e1..d9c089a2 100644 --- a/crates/soar-db/CHANGELOG.md +++ b/crates/soar-db/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.3.2](https://github.com/pkgforge/soar/compare/soar-db-v0.3.1...soar-db-v0.3.2) - 2026-01-18 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-registry - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.3.1](https://github.com/pkgforge/soar/compare/soar-db-v0.3.0...soar-db-v0.3.1) - 2026-01-17 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-db/Cargo.toml b/crates/soar-db/Cargo.toml index 33124896..d4ce745d 100644 --- a/crates/soar-db/Cargo.toml +++ b/crates/soar-db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-db" -version = "0.3.1" +version = "0.3.2" description = "Database operations for soar package manager" authors.workspace = true license.workspace = true diff --git a/crates/soar-package/CHANGELOG.md b/crates/soar-package/CHANGELOG.md index 249f5479..5a901060 100644 --- a/crates/soar-package/CHANGELOG.md +++ b/crates/soar-package/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.2.2](https://github.com/pkgforge/soar/compare/soar-package-v0.2.1...soar-package-v0.2.2) - 2026-01-18 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-config - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.2.1](https://github.com/pkgforge/soar/compare/soar-package-v0.2.0...soar-package-v0.2.1) - 2026-01-17 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-package/Cargo.toml b/crates/soar-package/Cargo.toml index 743948f7..e2be2d22 100644 --- a/crates/soar-package/Cargo.toml +++ b/crates/soar-package/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-package" -version = "0.2.1" +version = "0.2.2" description = "Package format handling for soar package manager" authors.workspace = true edition.workspace = true diff --git a/crates/soar-registry/CHANGELOG.md b/crates/soar-registry/CHANGELOG.md index f6ae1f95..b4fcb8b6 100644 --- a/crates/soar-registry/CHANGELOG.md +++ b/crates/soar-registry/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.2.2](https://github.com/pkgforge/soar/compare/soar-registry-v0.2.1...soar-registry-v0.2.2) - 2026-01-18 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-config - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.2.1](https://github.com/pkgforge/soar/compare/soar-registry-v0.2.0...soar-registry-v0.2.1) - 2026-01-17 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-registry/Cargo.toml b/crates/soar-registry/Cargo.toml index 2f8fe92d..b896179f 100644 --- a/crates/soar-registry/Cargo.toml +++ b/crates/soar-registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-registry" -version = "0.2.1" +version = "0.2.2" description = "Registry management for soar package manager" authors.workspace = true edition.workspace = true