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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@

## [0.9.1](https://github.com/pkgforge/soar/compare/v0.9.0...v0.9.1) - 2025-12-28

### πŸ› Bug Fixes

- *(apply)* Allow tracking versioning with URL packages ([#129](https://github.com/pkgforge/soar/pull/129)) - ([0b7deb6](https://github.com/pkgforge/soar/commit/0b7deb6733cbfe390cf7f3b5de670fc2010dc260))
- *(install)* Use deterministic hash for package without checksum - ([7a7a060](https://github.com/pkgforge/soar/commit/7a7a06049c61ba38a52921c51cb90b57aee4b809))
- *(install)* Handle removed packages, always show selection with --show - ([2b72975](https://github.com/pkgforge/soar/commit/2b72975c3f1dfc10d1e991cae73c267a8d5580cb))
- *(install)* Fix force reinstall cleanup and resume file corruption - ([c6150f7](https://github.com/pkgforge/soar/commit/c6150f72855249bd048194514dd3bdbca1beb21c))

## [0.9.0](https://github.com/pkgforge/soar/compare/v0.8.1...v0.9.0) - 2025-12-26

### ⛰️ Features
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ regex = { version = "1.12.2", default-features = false, features = [
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.148", features = ["indexmap"] }
serial_test = "3.2.0"
soar-config = { version = "0.1.0", path = "crates/soar-config" }
soar-core = { version = "0.9.0", path = "crates/soar-core" }
soar-db = { version = "0.1.0", path = "crates/soar-db" }
soar-dl = { version = "0.7.0", path = "crates/soar-dl" }
soar-package = { version = "0.1.0", path = "crates/soar-package" }
soar-registry = { version = "0.1.0", path = "crates/soar-registry" }
soar-utils = { version = "0.1.0", path = "crates/soar-utils" }
soar-config = { version = "0.1.1", path = "crates/soar-config" }
soar-core = { version = "0.10.0", path = "crates/soar-core" }
soar-db = { version = "0.2.0", path = "crates/soar-db" }
soar-dl = { version = "0.7.1", path = "crates/soar-dl" }
soar-package = { version = "0.1.1", path = "crates/soar-package" }
soar-registry = { version = "0.1.1", path = "crates/soar-registry" }
soar-utils = { version = "0.1.1", path = "crates/soar-utils" }
squishy = { version = "0.4.0", features = ["appimage", "dwarfs"] }
tempfile = "3.24.0"
thiserror = "2.0.17"
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.9.0"
version = "0.9.1"
description = "A modern package manager for Linux"
default-run = "soar"
authors.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/soar-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

## [0.1.1](https://github.com/pkgforge/soar/compare/soar-config-v0.1.0...soar-config-v0.1.1) - 2025-12-28

### βš™οΈ Miscellaneous Tasks

- Updated the following local packages: soar-utils - ([0000000](https://github.com/pkgforge/soar/commit/0000000))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟑 Minor

🧩 Analysis chain

🏁 Script executed:

# First, let's check the actual content of the CHANGELOG.md file around line 6
cat -n crates/soar-config/CHANGELOG.md | head -15

Repository: pkgforge/soar

Length of output: 617


🏁 Script executed:

# Find the actual commit that updated soar-utils dependency in soar-config
git log --oneline -20 --follow -- crates/soar-config/Cargo.toml

Repository: pkgforge/soar

Length of output: 79


🏁 Script executed:

# Also search for references to soar-utils in recent commits to the CHANGELOG
git log --oneline -30 | grep -i "soar-utils\|config"

Repository: pkgforge/soar

Length of output: 39


🏁 Script executed:

# Check recent commits to soar-utils crate
git log --oneline -30 -- crates/soar-utils/

Repository: pkgforge/soar

Length of output: 79


🏁 Script executed:

# Check the commit that updated soar-config version/dependencies
git log --oneline -10 --all | head -20

Repository: pkgforge/soar

Length of output: 614


🏁 Script executed:

# Look at the current HEAD and see what commit is there
git rev-parse HEAD && git log --oneline -1

Repository: pkgforge/soar

Length of output: 120


🏁 Script executed:

# Check what's in the release commit that might update soar-utils
git show --stat fc06264 | head -50

Repository: pkgforge/soar

Length of output: 2946


🏁 Script executed:

# Look for commits that actually modified soar-utils crate files
git log --oneline --all -- crates/soar-utils/ | head -20

Repository: pkgforge/soar

Length of output: 486


🏁 Script executed:

# Check the Cargo.toml to see if soar-utils version is referenced
cat crates/soar-config/Cargo.toml | grep -A 5 -B 5 soar-utils

Repository: pkgforge/soar

Length of output: 324


Replace placeholder commit hash with actual commit reference.

The commit reference "0000000" is a placeholder and should be replaced with the actual commit hash. Based on recent commits, this should likely reference commit fc06264 (the release commit) or whichever commit actually bumped the soar-utils dependency version for this release.

πŸ€– Prompt for AI Agents
In crates/soar-config/CHANGELOG.md around line 6, the changelog entry uses a
placeholder commit hash "0000000"; replace that placeholder with the actual
commit hash that updated the soar-utils dependency (e.g., fc06264 if that is the
release/bump commit). Update the markdown link text and URL to point to the real
commit (https://github.com/pkgforge/soar/commit/<actual-hash>) so the changelog
references the correct commit.


## [0.1.0] - 2025-12-26

### ⛰️ Features
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.1.0"
version = "0.1.1"
description = "Configuration management for soar package manager"
authors.workspace = true
edition.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/soar-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

## [0.10.0](https://github.com/pkgforge/soar/compare/soar-core-v0.9.0...soar-core-v0.10.0) - 2025-12-28

### πŸ› Bug Fixes

- *(install)* Fix force reinstall cleanup and resume file corruption - ([c6150f7](https://github.com/pkgforge/soar/commit/c6150f72855249bd048194514dd3bdbca1beb21c))

## [0.9.0](https://github.com/pkgforge/soar/compare/soar-core-v0.8.1...soar-core-v0.9.0) - 2025-12-26

### ⛰️ Features
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.9.0"
version = "0.10.0"
description = "Core library for soar package manager"
authors.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/soar-db/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

## [0.2.0](https://github.com/pkgforge/soar/compare/soar-db-v0.1.0...soar-db-v0.2.0) - 2025-12-28

### πŸ› Bug Fixes

- *(install)* Fix force reinstall cleanup and resume file corruption - ([c6150f7](https://github.com/pkgforge/soar/commit/c6150f72855249bd048194514dd3bdbca1beb21c))

## [0.1.0] - 2025-12-26

### ⛰️ Features
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.1.0"
version = "0.2.0"
description = "Database operations for soar package manager"
authors.workspace = true
license.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions crates/soar-dl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@

## [0.7.1](https://github.com/pkgforge/soar/compare/soar-dl-v0.7.0...soar-dl-v0.7.1) - 2025-12-28

### πŸ› Bug Fixes

- *(install)* Use deterministic hash for package without checksum - ([7a7a060](https://github.com/pkgforge/soar/commit/7a7a06049c61ba38a52921c51cb90b57aee4b809))
- *(install)* Fix force reinstall cleanup and resume file corruption - ([c6150f7](https://github.com/pkgforge/soar/commit/c6150f72855249bd048194514dd3bdbca1beb21c))

## [0.7.0] - 2025-12-26

### ⛰️ Features
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.7.0"
version = "0.7.1"
description = "Downloader for soar package manager"
authors.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/soar-package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

## [0.1.1](https://github.com/pkgforge/soar/compare/soar-package-v0.1.0...soar-package-v0.1.1) - 2025-12-28

### ⛰️ Features

- *(appimage)* Handle dwarfs appimage extraction - ([4781e9c](https://github.com/pkgforge/soar/commit/4781e9cb8d943cd8b1c4ad2723ef8b7f154f8476))

## [0.1.0] - 2025-12-26

### ⛰️ Features
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.1.0"
version = "0.1.1"
description = "Package format handling for soar package manager"
authors.workspace = true
edition.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/soar-registry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

## [0.1.1](https://github.com/pkgforge/soar/compare/soar-registry-v0.1.0...soar-registry-v0.1.1) - 2025-12-28

### βš™οΈ Miscellaneous Tasks

- Update Cargo.toml dependencies - ([0000000](https://github.com/pkgforge/soar/commit/0000000))

## [0.1.0] - 2025-12-26

### ⛰️ 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.1.0"
version = "0.1.1"
description = "Registry management for soar package manager"
authors.workspace = true
edition.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/soar-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

## [0.1.1](https://github.com/pkgforge/soar/compare/soar-utils-v0.1.0...soar-utils-v0.1.1) - 2025-12-28

### πŸ› Bug Fixes

- *(install)* Use deterministic hash for package without checksum - ([7a7a060](https://github.com/pkgforge/soar/commit/7a7a06049c61ba38a52921c51cb90b57aee4b809))

## [0.1.0] - 2025-12-26

### ⛰️ Features
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.1.0"
version = "0.1.1"
description = "Utilities for soar package manager"
authors.workspace = true
license.workspace = true
Expand Down
Loading