Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/soar-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
11 changes: 11 additions & 0 deletions crates/soar-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/soar-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
19 changes: 19 additions & 0 deletions crates/soar-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/soar-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
18 changes: 18 additions & 0 deletions crates/soar-db/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/soar-db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
15 changes: 15 additions & 0 deletions crates/soar-dl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/soar-dl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
11 changes: 11 additions & 0 deletions crates/soar-events/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/soar-events/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
21 changes: 21 additions & 0 deletions crates/soar-operations/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/soar-operations/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 12 additions & 0 deletions crates/soar-package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/soar-package/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
11 changes: 11 additions & 0 deletions crates/soar-registry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/soar-registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 12 additions & 0 deletions crates/soar-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/soar-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading