diff --git a/CHANGELOG.md b/CHANGELOG.md index d082d738..d48aa52c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,14 @@ +## [0.11.0](https://github.com/pkgforge/soar/compare/v0.10.3...v0.11.0) - 2026-01-30 + +### ⛰️ Features + +- *(nest)* [**breaking**] Remove nest functionality - ([dc21853](https://github.com/pkgforge/soar/commit/dc21853a2506d93d5ade9e2c4015c3a12b24c199)) + +### 🚜 Refactor + +- *(config)* Remove --external flag - ([3b53b8b](https://github.com/pkgforge/soar/commit/3b53b8bd91e322df21f7e4466f7d7640330fb613)) + ## [0.10.3](https://github.com/pkgforge/soar/compare/v0.10.2...v0.10.3) - 2026-01-24 ### ⛰️ Features diff --git a/Cargo.lock b/Cargo.lock index 410dd44e..f37178ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2211,7 +2211,7 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "soar-cli" -version = "0.10.3" +version = "0.11.0" dependencies = [ "clap", "fast-glob", @@ -2244,7 +2244,7 @@ dependencies = [ [[package]] name = "soar-config" -version = "0.4.0" +version = "0.5.0" dependencies = [ "documented", "miette", @@ -2258,7 +2258,7 @@ dependencies = [ [[package]] name = "soar-core" -version = "0.12.0" +version = "0.13.0" dependencies = [ "chrono", "compak", @@ -2285,7 +2285,7 @@ dependencies = [ [[package]] name = "soar-db" -version = "0.3.2" +version = "0.4.0" dependencies = [ "diesel", "diesel_migrations", @@ -2301,7 +2301,7 @@ dependencies = [ [[package]] name = "soar-dl" -version = "0.7.3" +version = "0.7.4" dependencies = [ "compak", "fast-glob", @@ -2321,7 +2321,7 @@ dependencies = [ [[package]] name = "soar-package" -version = "0.2.2" +version = "0.2.3" dependencies = [ "image", "miette", @@ -2335,7 +2335,7 @@ dependencies = [ [[package]] name = "soar-registry" -version = "0.2.2" +version = "0.3.0" dependencies = [ "miette", "serde", @@ -2352,7 +2352,7 @@ dependencies = [ [[package]] name = "soar-utils" -version = "0.2.0" +version = "0.3.0" dependencies = [ "blake3", "miette", diff --git a/Cargo.toml b/Cargo.toml index ade12fac..2d93de0a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,13 +48,13 @@ 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.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.3", path = "crates/soar-dl" } -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" } +soar-config = { version = "0.5.0", path = "crates/soar-config" } +soar-core = { version = "0.13.0", path = "crates/soar-core" } +soar-db = { version = "0.4.0", path = "crates/soar-db" } +soar-dl = { version = "0.7.4", path = "crates/soar-dl" } +soar-package = { version = "0.2.3", path = "crates/soar-package" } +soar-registry = { version = "0.3.0", path = "crates/soar-registry" } +soar-utils = { version = "0.3.0", path = "crates/soar-utils" } squishy = { version = "0.4.0", features = ["appimage", "dwarfs"] } tempfile = "3.24.0" thiserror = "2.0.17" diff --git a/crates/soar-cli/Cargo.toml b/crates/soar-cli/Cargo.toml index 41f8fd16..3a9df898 100644 --- a/crates/soar-cli/Cargo.toml +++ b/crates/soar-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-cli" -version = "0.10.3" +version = "0.11.0" 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 e38756e9..2ff7c233 100644 --- a/crates/soar-config/CHANGELOG.md +++ b/crates/soar-config/CHANGELOG.md @@ -1,4 +1,14 @@ +## [0.5.0](https://github.com/pkgforge/soar/compare/soar-config-v0.4.0...soar-config-v0.5.0) - 2026-01-30 + +### ⛰️ Features + +- *(nest)* [**breaking**] Remove nest functionality - ([dc21853](https://github.com/pkgforge/soar/commit/dc21853a2506d93d5ade9e2c4015c3a12b24c199)) + +### 🚜 Refactor + +- *(config)* Remove --external flag - ([3b53b8b](https://github.com/pkgforge/soar/commit/3b53b8bd91e322df21f7e4466f7d7640330fb613)) + ## [0.4.0](https://github.com/pkgforge/soar/compare/soar-config-v0.3.0...soar-config-v0.4.0) - 2026-01-24 ### ⛰️ Features diff --git a/crates/soar-config/Cargo.toml b/crates/soar-config/Cargo.toml index 7795e7a5..b5edbd22 100644 --- a/crates/soar-config/Cargo.toml +++ b/crates/soar-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-config" -version = "0.4.0" +version = "0.5.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 d14e7f99..d4b67abc 100644 --- a/crates/soar-core/CHANGELOG.md +++ b/crates/soar-core/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.13.0](https://github.com/pkgforge/soar/compare/soar-core-v0.12.0...soar-core-v0.13.0) - 2026-01-30 + +### ⛰️ Features + +- *(nest)* [**breaking**] Remove nest functionality - ([dc21853](https://github.com/pkgforge/soar/commit/dc21853a2506d93d5ade9e2c4015c3a12b24c199)) + ## [0.12.0](https://github.com/pkgforge/soar/compare/soar-core-v0.11.1...soar-core-v0.12.0) - 2026-01-24 ### ⛰️ Features diff --git a/crates/soar-core/Cargo.toml b/crates/soar-core/Cargo.toml index ca2a95d7..6472b91b 100644 --- a/crates/soar-core/Cargo.toml +++ b/crates/soar-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-core" -version = "0.12.0" +version = "0.13.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 4424dd8d..9f253a56 100644 --- a/crates/soar-db/CHANGELOG.md +++ b/crates/soar-db/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.4.0](https://github.com/pkgforge/soar/compare/soar-db-v0.3.2...soar-db-v0.4.0) - 2026-01-30 + +### ⛰️ Features + +- *(nest)* [**breaking**] Remove nest functionality - ([dc21853](https://github.com/pkgforge/soar/commit/dc21853a2506d93d5ade9e2c4015c3a12b24c199)) + ## [0.3.2](https://github.com/pkgforge/soar/compare/soar-db-v0.3.1...soar-db-v0.3.2) - 2026-01-24 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-db/Cargo.toml b/crates/soar-db/Cargo.toml index d4ce745d..69f9470e 100644 --- a/crates/soar-db/Cargo.toml +++ b/crates/soar-db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-db" -version = "0.3.2" +version = "0.4.0" description = "Database operations for soar package manager" authors.workspace = true license.workspace = true diff --git a/crates/soar-dl/CHANGELOG.md b/crates/soar-dl/CHANGELOG.md index e410fe47..86bcf7c4 100644 --- a/crates/soar-dl/CHANGELOG.md +++ b/crates/soar-dl/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.7.4](https://github.com/pkgforge/soar/compare/soar-dl-v0.7.3...soar-dl-v0.7.4) - 2026-01-30 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-utils - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.7.3](https://github.com/pkgforge/soar/compare/soar-dl-v0.7.2...soar-dl-v0.7.3) - 2026-01-24 ### ⛰️ Features diff --git a/crates/soar-dl/Cargo.toml b/crates/soar-dl/Cargo.toml index 7d47acb0..f5b6a9ad 100644 --- a/crates/soar-dl/Cargo.toml +++ b/crates/soar-dl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-dl" -version = "0.7.3" +version = "0.7.4" description = "Downloader 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 7b9da4ca..14450bcf 100644 --- a/crates/soar-package/CHANGELOG.md +++ b/crates/soar-package/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.2.3](https://github.com/pkgforge/soar/compare/soar-package-v0.2.2...soar-package-v0.2.3) - 2026-01-30 + +### ⚙️ Miscellaneous Tasks + +- Updated the following local packages: soar-utils, soar-config - ([0000000](https://github.com/pkgforge/soar/commit/0000000)) + ## [0.2.2](https://github.com/pkgforge/soar/compare/soar-package-v0.2.1...soar-package-v0.2.2) - 2026-01-24 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-package/Cargo.toml b/crates/soar-package/Cargo.toml index e2be2d22..f9094588 100644 --- a/crates/soar-package/Cargo.toml +++ b/crates/soar-package/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-package" -version = "0.2.2" +version = "0.2.3" 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 a308cc37..1f2bc5f7 100644 --- a/crates/soar-registry/CHANGELOG.md +++ b/crates/soar-registry/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.3.0](https://github.com/pkgforge/soar/compare/soar-registry-v0.2.2...soar-registry-v0.3.0) - 2026-01-30 + +### ⛰️ Features + +- *(nest)* [**breaking**] Remove nest functionality - ([dc21853](https://github.com/pkgforge/soar/commit/dc21853a2506d93d5ade9e2c4015c3a12b24c199)) + ## [0.2.2](https://github.com/pkgforge/soar/compare/soar-registry-v0.2.1...soar-registry-v0.2.2) - 2026-01-24 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-registry/Cargo.toml b/crates/soar-registry/Cargo.toml index b896179f..4e1ed5c1 100644 --- a/crates/soar-registry/Cargo.toml +++ b/crates/soar-registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-registry" -version = "0.2.2" +version = "0.3.0" description = "Registry management for soar package manager" authors.workspace = true edition.workspace = true diff --git a/crates/soar-utils/CHANGELOG.md b/crates/soar-utils/CHANGELOG.md index 3bd1c7e7..eb793d14 100644 --- a/crates/soar-utils/CHANGELOG.md +++ b/crates/soar-utils/CHANGELOG.md @@ -1,4 +1,10 @@ +## [0.3.0](https://github.com/pkgforge/soar/compare/soar-utils-v0.2.0...soar-utils-v0.3.0) - 2026-01-30 + +### ⛰️ Features + +- *(nest)* [**breaking**] Remove nest functionality - ([dc21853](https://github.com/pkgforge/soar/commit/dc21853a2506d93d5ade9e2c4015c3a12b24c199)) + ## [0.2.0](https://github.com/pkgforge/soar/compare/soar-utils-v0.1.1...soar-utils-v0.2.0) - 2026-01-17 ### ⛰️ Features diff --git a/crates/soar-utils/Cargo.toml b/crates/soar-utils/Cargo.toml index 58663ad1..381fd5ef 100644 --- a/crates/soar-utils/Cargo.toml +++ b/crates/soar-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-utils" -version = "0.2.0" +version = "0.3.0" description = "Utilities for soar package manager" authors.workspace = true license.workspace = true