diff --git a/CHANGELOG.md b/CHANGELOG.md index dd17de07..e71ac049 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,29 @@ +## [0.13.0](https://github.com/pkgforge/soar/compare/v0.12.7...v0.13.0) - 2026-08-02 + +### ⛰️ Features + +- *(install)* Record where a URL install came from - ([d6c83ad](https://github.com/pkgforge/soar/commit/d6c83adf7ee42783d1f415b3c1c2a601f6b6d9c1)) +- *(package)* Add onelf support - ([0059732](https://github.com/pkgforge/soar/commit/0059732adb754a15505f6345c86a3cf693ed8d23)) +- *(remove)* Accept the URL a package was installed from - ([cb95df8](https://github.com/pkgforge/soar/commit/cb95df8a081d4d363ec1c9fde3b6e207dc3ab218)) +- *(update)* Follow a release source when no feed is declared - ([178b87a](https://github.com/pkgforge/soar/commit/178b87a48b34dfab3af4f986569c6fb3ec8d1244)) +- *(update)* Update URL-installed AppImages over zsync - ([509df1f](https://github.com/pkgforge/soar/commit/509df1fb1ca0d0e50d12f6eee1652d368acb71ba)) +- *(update)* Accept the URL a package was installed from - ([5434005](https://github.com/pkgforge/soar/commit/5434005c15c3a49ee91a37456adf5dc064a6eef3)) +- [**breaking**] Consume the declarative index, drop the pkg_id requirement ([#186](https://github.com/pkgforge/soar/pull/186)) - ([3a35ad7](https://github.com/pkgforge/soar/commit/3a35ad7774e7ac3d8c055e4257cb3e9dff5be2fe)) + +### 🐛 Bug Fixes + +- *(remove)* Drop '#all', which duplicated a bare name - ([28fc0fc](https://github.com/pkgforge/soar/commit/28fc0fc2c26af6401275856224d9691044050733)) +- *(update)* Keep matching when a repo stops publishing families - ([a04c9a7](https://github.com/pkgforge/soar/commit/a04c9a75cf5807dd89aa5bbcaa3397f8aee97f14)) +- *(update)* Say why a source check failed - ([64e115e](https://github.com/pkgforge/soar/commit/64e115e70895839c57b94b2ee3d9d58ef7923ed8)) +- *(update)* Trust the checksum, not the version label - ([e05092d](https://github.com/pkgforge/soar/commit/e05092db24e9ff4a60c65a2e368d5f92fc8e9e0d)) +- *(url)* Take the version from the release tag, not the arch - ([21de292](https://github.com/pkgforge/soar/commit/21de292d87eccb96fda730cd0937629cf5600a98)) + +### 📚 Documentation + +- Cover forge tokens and rate limits - ([ccdd34a](https://github.com/pkgforge/soar/commit/ccdd34ad3f09a90994b85e917a45885fd1c3e413)) +- Refresh the readme and contributing guidelines - ([5ecd397](https://github.com/pkgforge/soar/commit/5ecd397e853d7d601677766ccf73dc68c063f015)) + ## [0.12.7](https://github.com/pkgforge/soar/compare/v0.12.6...v0.12.7) - 2026-07-16 ### ⛰️ Features diff --git a/Cargo.lock b/Cargo.lock index 8f5db52f..faa9a50a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2215,7 +2215,7 @@ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" [[package]] name = "soar-cli" -version = "0.12.7" +version = "0.13.0" dependencies = [ "clap", "clap_complete", @@ -2247,7 +2247,7 @@ dependencies = [ [[package]] name = "soar-config" -version = "0.11.0" +version = "0.12.0" dependencies = [ "documented", "miette", @@ -2261,7 +2261,7 @@ dependencies = [ [[package]] name = "soar-core" -version = "0.16.4" +version = "0.17.0" dependencies = [ "chrono", "compak", @@ -2291,7 +2291,7 @@ dependencies = [ [[package]] name = "soar-db" -version = "0.5.5" +version = "0.6.0" dependencies = [ "diesel", "diesel_migrations", @@ -2308,7 +2308,7 @@ dependencies = [ [[package]] name = "soar-dl" -version = "0.10.2" +version = "0.11.0" dependencies = [ "compak", "fast-glob", @@ -2330,11 +2330,11 @@ dependencies = [ [[package]] name = "soar-events" -version = "0.1.0" +version = "0.2.0" [[package]] name = "soar-operations" -version = "0.3.2" +version = "0.4.0" dependencies = [ "fast-glob", "minisign-verify", @@ -2356,7 +2356,7 @@ dependencies = [ [[package]] name = "soar-package" -version = "0.4.2" +version = "0.5.0" dependencies = [ "image", "miette", @@ -2373,7 +2373,7 @@ dependencies = [ [[package]] name = "soar-registry" -version = "0.5.1" +version = "0.6.0" dependencies = [ "miette", "minisign-verify", @@ -2391,7 +2391,7 @@ dependencies = [ [[package]] name = "soar-utils" -version = "0.4.3" +version = "0.5.0" dependencies = [ "blake3", "miette", diff --git a/Cargo.toml b/Cargo.toml index 8ce41e30..b26fbf75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,15 +60,15 @@ serde = { version = "1.0.228", features = ["derive"] } serde_json = { version = "1.0.150", features = ["indexmap"] } serial_test = "3.5.0" sha2 = "0.11.0" -soar-config = { version = "0.11.0", path = "crates/soar-config" } -soar-core = { version = "0.16.4", path = "crates/soar-core" } -soar-db = { version = "0.5.5", path = "crates/soar-db" } -soar-dl = { version = "0.10.2", path = "crates/soar-dl" } -soar-events = { version = "0.1.0", path = "crates/soar-events" } -soar-operations = { version = "0.3.2", path = "crates/soar-operations" } -soar-package = { version = "0.4.2", path = "crates/soar-package" } -soar-registry = { version = "0.5.1", path = "crates/soar-registry" } -soar-utils = { version = "0.4.3", path = "crates/soar-utils" } +soar-config = { version = "0.12.0", path = "crates/soar-config" } +soar-core = { version = "0.17.0", path = "crates/soar-core" } +soar-db = { version = "0.6.0", path = "crates/soar-db" } +soar-dl = { version = "0.11.0", path = "crates/soar-dl" } +soar-events = { version = "0.2.0", path = "crates/soar-events" } +soar-operations = { version = "0.4.0", path = "crates/soar-operations" } +soar-package = { version = "0.5.0", path = "crates/soar-package" } +soar-registry = { version = "0.6.0", path = "crates/soar-registry" } +soar-utils = { version = "0.5.0", path = "crates/soar-utils" } squishy = { version = "0.5.1", features = ["appimage", "dwarfs"] } tabled = { version = "0.21", default-features = false, features = ["ansi"] } terminal_size = "0.4" diff --git a/crates/soar-cli/Cargo.toml b/crates/soar-cli/Cargo.toml index 67dd46dc..2b018e19 100644 --- a/crates/soar-cli/Cargo.toml +++ b/crates/soar-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-cli" -version = "0.12.7" +version = "0.13.0" 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 8c67cec7..fe437a07 100644 --- a/crates/soar-config/CHANGELOG.md +++ b/crates/soar-config/CHANGELOG.md @@ -1,4 +1,15 @@ +## [0.12.0](https://github.com/pkgforge/soar/compare/soar-config-v0.11.0...soar-config-v0.12.0) - 2026-08-02 + +### ⛰️ Features + +- [**breaking**] Consume the declarative index, drop the pkg_id requirement ([#186](https://github.com/pkgforge/soar/pull/186)) - ([3a35ad7](https://github.com/pkgforge/soar/commit/3a35ad7774e7ac3d8c055e4257cb3e9dff5be2fe)) + +### 📚 Documentation + +- Cover forge tokens and rate limits - ([ccdd34a](https://github.com/pkgforge/soar/commit/ccdd34ad3f09a90994b85e917a45885fd1c3e413)) +- Refresh the readme and contributing guidelines - ([5ecd397](https://github.com/pkgforge/soar/commit/5ecd397e853d7d601677766ccf73dc68c063f015)) + ## [0.11.0](https://github.com/pkgforge/soar/compare/soar-config-v0.10.0...soar-config-v0.11.0) - 2026-07-16 ### 🐛 Bug Fixes diff --git a/crates/soar-config/Cargo.toml b/crates/soar-config/Cargo.toml index 51161183..24feda21 100644 --- a/crates/soar-config/Cargo.toml +++ b/crates/soar-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-config" -version = "0.11.0" +version = "0.12.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 0416e372..51351544 100644 --- a/crates/soar-core/CHANGELOG.md +++ b/crates/soar-core/CHANGELOG.md @@ -1,4 +1,23 @@ +## [0.17.0](https://github.com/pkgforge/soar/compare/soar-core-v0.16.4...soar-core-v0.17.0) - 2026-08-02 + +### ⛰️ Features + +- *(install)* Record where a URL install came from - ([d6c83ad](https://github.com/pkgforge/soar/commit/d6c83adf7ee42783d1f415b3c1c2a601f6b6d9c1)) +- *(update)* Follow a release source when no feed is declared - ([178b87a](https://github.com/pkgforge/soar/commit/178b87a48b34dfab3af4f986569c6fb3ec8d1244)) +- *(update)* Update URL-installed AppImages over zsync - ([509df1f](https://github.com/pkgforge/soar/commit/509df1fb1ca0d0e50d12f6eee1652d368acb71ba)) +- [**breaking**] Consume the declarative index, drop the pkg_id requirement ([#186](https://github.com/pkgforge/soar/pull/186)) - ([3a35ad7](https://github.com/pkgforge/soar/commit/3a35ad7774e7ac3d8c055e4257cb3e9dff5be2fe)) + +### 🐛 Bug Fixes + +- *(remove)* Drop '#all', which duplicated a bare name - ([28fc0fc](https://github.com/pkgforge/soar/commit/28fc0fc2c26af6401275856224d9691044050733)) +- *(url)* Take the version from the release tag, not the arch - ([21de292](https://github.com/pkgforge/soar/commit/21de292d87eccb96fda730cd0937629cf5600a98)) + +### 📚 Documentation + +- Cover forge tokens and rate limits - ([ccdd34a](https://github.com/pkgforge/soar/commit/ccdd34ad3f09a90994b85e917a45885fd1c3e413)) +- Refresh the readme and contributing guidelines - ([5ecd397](https://github.com/pkgforge/soar/commit/5ecd397e853d7d601677766ccf73dc68c063f015)) + ## [0.16.4](https://github.com/pkgforge/soar/compare/soar-core-v0.16.3...soar-core-v0.16.4) - 2026-07-16 ### 🐛 Bug Fixes diff --git a/crates/soar-core/Cargo.toml b/crates/soar-core/Cargo.toml index e1e854f1..55787d5a 100644 --- a/crates/soar-core/Cargo.toml +++ b/crates/soar-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-core" -version = "0.16.4" +version = "0.17.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 c787e3bb..ea572c07 100644 --- a/crates/soar-db/CHANGELOG.md +++ b/crates/soar-db/CHANGELOG.md @@ -1,4 +1,22 @@ +## [0.6.0](https://github.com/pkgforge/soar/compare/soar-db-v0.5.5...soar-db-v0.6.0) - 2026-08-02 + +### ⛰️ Features + +- *(install)* Record where a URL install came from - ([d6c83ad](https://github.com/pkgforge/soar/commit/d6c83adf7ee42783d1f415b3c1c2a601f6b6d9c1)) +- *(remove)* Accept the URL a package was installed from - ([cb95df8](https://github.com/pkgforge/soar/commit/cb95df8a081d4d363ec1c9fde3b6e207dc3ab218)) +- *(update)* Update URL-installed AppImages over zsync - ([509df1f](https://github.com/pkgforge/soar/commit/509df1fb1ca0d0e50d12f6eee1652d368acb71ba)) +- [**breaking**] Consume the declarative index, drop the pkg_id requirement ([#186](https://github.com/pkgforge/soar/pull/186)) - ([3a35ad7](https://github.com/pkgforge/soar/commit/3a35ad7774e7ac3d8c055e4257cb3e9dff5be2fe)) + +### 🐛 Bug Fixes + +- *(update)* Keep matching when a repo stops publishing families - ([a04c9a7](https://github.com/pkgforge/soar/commit/a04c9a75cf5807dd89aa5bbcaa3397f8aee97f14)) + +### 📚 Documentation + +- Cover forge tokens and rate limits - ([ccdd34a](https://github.com/pkgforge/soar/commit/ccdd34ad3f09a90994b85e917a45885fd1c3e413)) +- Refresh the readme and contributing guidelines - ([5ecd397](https://github.com/pkgforge/soar/commit/5ecd397e853d7d601677766ccf73dc68c063f015)) + ## [0.5.5](https://github.com/pkgforge/soar/compare/soar-db-v0.5.4...soar-db-v0.5.5) - 2026-07-16 ### 🐛 Bug Fixes diff --git a/crates/soar-db/Cargo.toml b/crates/soar-db/Cargo.toml index cadf9f1a..bee54911 100644 --- a/crates/soar-db/Cargo.toml +++ b/crates/soar-db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-db" -version = "0.5.5" +version = "0.6.0" description = "Database operations for soar package manager" license.workspace = true edition.workspace = true diff --git a/crates/soar-dl/CHANGELOG.md b/crates/soar-dl/CHANGELOG.md index cc65b4cc..817fd691 100644 --- a/crates/soar-dl/CHANGELOG.md +++ b/crates/soar-dl/CHANGELOG.md @@ -1,4 +1,19 @@ +## [0.11.0](https://github.com/pkgforge/soar/compare/soar-dl-v0.10.2...soar-dl-v0.11.0) - 2026-08-02 + +### ⛰️ Features + +- *(install)* Record where a URL install came from - ([d6c83ad](https://github.com/pkgforge/soar/commit/d6c83adf7ee42783d1f415b3c1c2a601f6b6d9c1)) +- *(update)* Accept the URL a package was installed from - ([5434005](https://github.com/pkgforge/soar/commit/5434005c15c3a49ee91a37456adf5dc064a6eef3)) +- *(update)* Follow a release source when no feed is declared - ([178b87a](https://github.com/pkgforge/soar/commit/178b87a48b34dfab3af4f986569c6fb3ec8d1244)) +- *(update)* Update URL-installed AppImages over zsync - ([509df1f](https://github.com/pkgforge/soar/commit/509df1fb1ca0d0e50d12f6eee1652d368acb71ba)) +- [**breaking**] Consume the declarative index, drop the pkg_id requirement ([#186](https://github.com/pkgforge/soar/pull/186)) - ([3a35ad7](https://github.com/pkgforge/soar/commit/3a35ad7774e7ac3d8c055e4257cb3e9dff5be2fe)) + +### 📚 Documentation + +- Cover forge tokens and rate limits - ([ccdd34a](https://github.com/pkgforge/soar/commit/ccdd34ad3f09a90994b85e917a45885fd1c3e413)) +- Refresh the readme and contributing guidelines - ([5ecd397](https://github.com/pkgforge/soar/commit/5ecd397e853d7d601677766ccf73dc68c063f015)) + ## [0.10.2](https://github.com/pkgforge/soar/compare/soar-dl-v0.10.1...soar-dl-v0.10.2) - 2026-07-16 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-dl/Cargo.toml b/crates/soar-dl/Cargo.toml index ee49924e..91e86f82 100644 --- a/crates/soar-dl/Cargo.toml +++ b/crates/soar-dl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-dl" -version = "0.10.2" +version = "0.11.0" description = "Downloader for soar package manager" license.workspace = true edition.workspace = true diff --git a/crates/soar-events/CHANGELOG.md b/crates/soar-events/CHANGELOG.md index e410af19..bb540734 100644 --- a/crates/soar-events/CHANGELOG.md +++ b/crates/soar-events/CHANGELOG.md @@ -1,4 +1,15 @@ +## [0.2.0](https://github.com/pkgforge/soar/compare/soar-events-v0.1.0...soar-events-v0.2.0) - 2026-08-02 + +### ⛰️ Features + +- [**breaking**] Consume the declarative index, drop the pkg_id requirement ([#186](https://github.com/pkgforge/soar/pull/186)) - ([3a35ad7](https://github.com/pkgforge/soar/commit/3a35ad7774e7ac3d8c055e4257cb3e9dff5be2fe)) + +### 📚 Documentation + +- Cover forge tokens and rate limits - ([ccdd34a](https://github.com/pkgforge/soar/commit/ccdd34ad3f09a90994b85e917a45885fd1c3e413)) +- Refresh the readme and contributing guidelines - ([5ecd397](https://github.com/pkgforge/soar/commit/5ecd397e853d7d601677766ccf73dc68c063f015)) + ## [0.1.0](https://github.com/pkgforge/soar/compare/soar-events-v0.0.0...soar-events-v0.1.0) - 2026-02-24 ### ⛰️ Features diff --git a/crates/soar-events/Cargo.toml b/crates/soar-events/Cargo.toml index b8dbf2b4..68219db7 100644 --- a/crates/soar-events/Cargo.toml +++ b/crates/soar-events/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-events" -version = "0.1.0" +version = "0.2.0" description = "Event system 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 72886c1f..b0374431 100644 --- a/crates/soar-operations/CHANGELOG.md +++ b/crates/soar-operations/CHANGELOG.md @@ -1,4 +1,25 @@ +## [0.4.0](https://github.com/pkgforge/soar/compare/soar-operations-v0.3.2...soar-operations-v0.4.0) - 2026-08-02 + +### ⛰️ Features + +- *(remove)* Accept the URL a package was installed from - ([cb95df8](https://github.com/pkgforge/soar/commit/cb95df8a081d4d363ec1c9fde3b6e207dc3ab218)) +- *(update)* Accept the URL a package was installed from - ([5434005](https://github.com/pkgforge/soar/commit/5434005c15c3a49ee91a37456adf5dc064a6eef3)) +- *(update)* Follow a release source when no feed is declared - ([178b87a](https://github.com/pkgforge/soar/commit/178b87a48b34dfab3af4f986569c6fb3ec8d1244)) +- *(update)* Update URL-installed AppImages over zsync - ([509df1f](https://github.com/pkgforge/soar/commit/509df1fb1ca0d0e50d12f6eee1652d368acb71ba)) +- [**breaking**] Consume the declarative index, drop the pkg_id requirement ([#186](https://github.com/pkgforge/soar/pull/186)) - ([3a35ad7](https://github.com/pkgforge/soar/commit/3a35ad7774e7ac3d8c055e4257cb3e9dff5be2fe)) + +### 🐛 Bug Fixes + +- *(remove)* Drop '#all', which duplicated a bare name - ([28fc0fc](https://github.com/pkgforge/soar/commit/28fc0fc2c26af6401275856224d9691044050733)) +- *(update)* Say why a source check failed - ([64e115e](https://github.com/pkgforge/soar/commit/64e115e70895839c57b94b2ee3d9d58ef7923ed8)) +- *(update)* Trust the checksum, not the version label - ([e05092d](https://github.com/pkgforge/soar/commit/e05092db24e9ff4a60c65a2e368d5f92fc8e9e0d)) + +### 📚 Documentation + +- Cover forge tokens and rate limits - ([ccdd34a](https://github.com/pkgforge/soar/commit/ccdd34ad3f09a90994b85e917a45885fd1c3e413)) +- Refresh the readme and contributing guidelines - ([5ecd397](https://github.com/pkgforge/soar/commit/5ecd397e853d7d601677766ccf73dc68c063f015)) + ## [0.3.2](https://github.com/pkgforge/soar/compare/soar-operations-v0.3.1...soar-operations-v0.3.2) - 2026-07-16 ### 🐛 Bug Fixes diff --git a/crates/soar-operations/Cargo.toml b/crates/soar-operations/Cargo.toml index ba9809d6..8ffb5cf8 100644 --- a/crates/soar-operations/Cargo.toml +++ b/crates/soar-operations/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-operations" -version = "0.3.2" +version = "0.4.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 ce1bec59..f229081d 100644 --- a/crates/soar-package/CHANGELOG.md +++ b/crates/soar-package/CHANGELOG.md @@ -1,4 +1,16 @@ +## [0.5.0](https://github.com/pkgforge/soar/compare/soar-package-v0.4.2...soar-package-v0.5.0) - 2026-08-02 + +### ⛰️ Features + +- *(package)* Add onelf support - ([0059732](https://github.com/pkgforge/soar/commit/0059732adb754a15505f6345c86a3cf693ed8d23)) +- [**breaking**] Consume the declarative index, drop the pkg_id requirement ([#186](https://github.com/pkgforge/soar/pull/186)) - ([3a35ad7](https://github.com/pkgforge/soar/commit/3a35ad7774e7ac3d8c055e4257cb3e9dff5be2fe)) + +### 📚 Documentation + +- Cover forge tokens and rate limits - ([ccdd34a](https://github.com/pkgforge/soar/commit/ccdd34ad3f09a90994b85e917a45885fd1c3e413)) +- Refresh the readme and contributing guidelines - ([5ecd397](https://github.com/pkgforge/soar/commit/5ecd397e853d7d601677766ccf73dc68c063f015)) + ## [0.4.2](https://github.com/pkgforge/soar/compare/soar-package-v0.4.1...soar-package-v0.4.2) - 2026-07-16 ### ⚙️ Miscellaneous Tasks diff --git a/crates/soar-package/Cargo.toml b/crates/soar-package/Cargo.toml index dcd5bbfc..74291a79 100644 --- a/crates/soar-package/Cargo.toml +++ b/crates/soar-package/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-package" -version = "0.4.2" +version = "0.5.0" 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 74867616..4f61aba0 100644 --- a/crates/soar-registry/CHANGELOG.md +++ b/crates/soar-registry/CHANGELOG.md @@ -1,4 +1,15 @@ +## [0.6.0](https://github.com/pkgforge/soar/compare/soar-registry-v0.5.1...soar-registry-v0.6.0) - 2026-08-02 + +### ⛰️ Features + +- [**breaking**] Consume the declarative index, drop the pkg_id requirement ([#186](https://github.com/pkgforge/soar/pull/186)) - ([3a35ad7](https://github.com/pkgforge/soar/commit/3a35ad7774e7ac3d8c055e4257cb3e9dff5be2fe)) + +### 📚 Documentation + +- Cover forge tokens and rate limits - ([ccdd34a](https://github.com/pkgforge/soar/commit/ccdd34ad3f09a90994b85e917a45885fd1c3e413)) +- Refresh the readme and contributing guidelines - ([5ecd397](https://github.com/pkgforge/soar/commit/5ecd397e853d7d601677766ccf73dc68c063f015)) + ## [0.5.1](https://github.com/pkgforge/soar/compare/soar-registry-v0.5.0...soar-registry-v0.5.1) - 2026-07-16 ### ⛰️ Features diff --git a/crates/soar-registry/Cargo.toml b/crates/soar-registry/Cargo.toml index d6d66929..b64d5869 100644 --- a/crates/soar-registry/Cargo.toml +++ b/crates/soar-registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-registry" -version = "0.5.1" +version = "0.6.0" description = "Registry management for soar package manager" edition.workspace = true readme.workspace = true diff --git a/crates/soar-utils/CHANGELOG.md b/crates/soar-utils/CHANGELOG.md index 410b7359..f82836a7 100644 --- a/crates/soar-utils/CHANGELOG.md +++ b/crates/soar-utils/CHANGELOG.md @@ -1,4 +1,16 @@ +## [0.5.0](https://github.com/pkgforge/soar/compare/soar-utils-v0.4.3...soar-utils-v0.5.0) - 2026-08-02 + +### ⛰️ Features + +- *(install)* Record where a URL install came from - ([d6c83ad](https://github.com/pkgforge/soar/commit/d6c83adf7ee42783d1f415b3c1c2a601f6b6d9c1)) +- [**breaking**] Consume the declarative index, drop the pkg_id requirement ([#186](https://github.com/pkgforge/soar/pull/186)) - ([3a35ad7](https://github.com/pkgforge/soar/commit/3a35ad7774e7ac3d8c055e4257cb3e9dff5be2fe)) + +### 📚 Documentation + +- Cover forge tokens and rate limits - ([ccdd34a](https://github.com/pkgforge/soar/commit/ccdd34ad3f09a90994b85e917a45885fd1c3e413)) +- Refresh the readme and contributing guidelines - ([5ecd397](https://github.com/pkgforge/soar/commit/5ecd397e853d7d601677766ccf73dc68c063f015)) + ## [0.4.3](https://github.com/pkgforge/soar/compare/soar-utils-v0.4.2...soar-utils-v0.4.3) - 2026-07-16 ### 🐛 Bug Fixes diff --git a/crates/soar-utils/Cargo.toml b/crates/soar-utils/Cargo.toml index 8b01deee..ec3e65f8 100644 --- a/crates/soar-utils/Cargo.toml +++ b/crates/soar-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-utils" -version = "0.4.3" +version = "0.5.0" description = "Utilities for soar package manager" license.workspace = true edition.workspace = true