diff --git a/CHANGELOG.md b/CHANGELOG.md index f1b7eb1..ffcf8a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,23 @@ +## [0.5.2](https://github.com/pkgforge/soar/compare/v0.5.1..v0.5.2) - 2025-01-30 + +### 🐛 Bug Fixes + +- *(icon)* Fix desktop icon integration - ([7d09ff4](https://github.com/pkgforge/soar/commit/7d09ff43d35daa7173787a0a06ec378bb3b44d40)) +- *(integration)* Skip desktop integration for static/dynamic package - ([0d10c12](https://github.com/pkgforge/soar/commit/0d10c12819863bbd541cb6aa974876514e71dbeb)) +- *(remove)* Ignore error if package path is already removed - ([58cb283](https://github.com/pkgforge/soar/commit/58cb283109854f0fafe6515cf256521fac49da2a)) +- *(self_update)* Fix version check - ([86d02cc](https://github.com/pkgforge/soar/commit/86d02ccf1e8f89ae4c3c2073a859c9d7d28809ef)) + +### ⚡ Performance + +- *(remove)* Don't load metadata databases on package removal - ([229e265](https://github.com/pkgforge/soar/commit/229e2654322f7a7d01945935b2df3a50f156ef27)) +- *(state)* Lazy load databases - ([823dea4](https://github.com/pkgforge/soar/commit/823dea48287eb367172ce1cfc3462d6ae63eee25)) + +### ⚙️ Miscellaneous Tasks + +- *(script)* Update install script - ([126e5d4](https://github.com/pkgforge/soar/commit/126e5d4c094671ac6421fa8271e8b50d086c023d)) + + ## [0.5.1](https://github.com/pkgforge/soar/compare/v0.5.0..v0.5.1) - 2025-01-27 ### 🐛 Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index f0a4679..5429716 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1710,7 +1710,7 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" [[package]] name = "soar-cli" -version = "0.5.1" +version = "0.5.2" dependencies = [ "clap", "futures", @@ -1734,7 +1734,7 @@ dependencies = [ [[package]] name = "soar-core" -version = "0.1.1" +version = "0.1.2" dependencies = [ "blake3", "chrono", diff --git a/soar-cli/Cargo.toml b/soar-cli/Cargo.toml index a28fd22..736d3f6 100644 --- a/soar-cli/Cargo.toml +++ b/soar-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-cli" -version = "0.5.1" +version = "0.5.2" description = "A modern package manager for Linux" default-run = "soar" authors.workspace = true diff --git a/soar-core/Cargo.toml b/soar-core/Cargo.toml index 35c9f5f..18fdb58 100644 --- a/soar-core/Cargo.toml +++ b/soar-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-core" -version = "0.1.1" +version = "0.1.2" description = "Core library for soar package manager" authors.workspace = true license.workspace = true