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

## [0.12.2](https://github.com/pkgforge/soar/compare/v0.12.1...v0.12.2) - 2026-06-04

### ⛰️ Features

- *(cli)* Add shell completions command - ([401fb04](https://github.com/pkgforge/soar/commit/401fb0466844bd05acdb5d847e19d0dcd5d4141b))
- *(sandbox)* Add enabled flag and global defaults - ([a3a4431](https://github.com/pkgforge/soar/commit/a3a4431873a79da17e1c4026846ebd44ea24ab71))

### πŸ› Bug Fixes

- *(dl)* Verify download integrity ([#168](https://github.com/pkgforge/soar/pull/168)) - ([336f2dd](https://github.com/pkgforge/soar/commit/336f2dde6cb8d1c112f4f558129ed53bf0888d03))
- *(progress)* Emit build/hook events to clear spinner during build - ([306f001](https://github.com/pkgforge/soar/commit/306f00120e23834658d17b82bfc3eec6f22280d3))

## [0.12.1](https://github.com/pkgforge/soar/compare/v0.12.0...v0.12.1) - 2026-04-10

### ⛰️ Features
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149", features = ["indexmap"] }
serial_test = "3.3.1"
sha2 = "0.10.9"
soar-config = { version = "0.7.0", path = "crates/soar-config" }
soar-core = { version = "0.15.0", path = "crates/soar-core" }
soar-db = { version = "0.5.1", path = "crates/soar-db" }
soar-dl = { version = "0.9.1", path = "crates/soar-dl" }
soar-config = { version = "0.8.0", path = "crates/soar-config" }
soar-core = { version = "0.16.0", path = "crates/soar-core" }
soar-db = { version = "0.5.2", path = "crates/soar-db" }
soar-dl = { version = "0.10.0", path = "crates/soar-dl" }
soar-events = { version = "0.1.0", path = "crates/soar-events" }
soar-operations = { version = "0.2.0", path = "crates/soar-operations" }
soar-package = { version = "0.3.1", path = "crates/soar-package" }
soar-registry = { version = "0.4.1", path = "crates/soar-registry" }
soar-utils = { version = "0.4.0", path = "crates/soar-utils" }
soar-operations = { version = "0.2.1", path = "crates/soar-operations" }
soar-package = { version = "0.3.2", path = "crates/soar-package" }
soar-registry = { version = "0.4.2", path = "crates/soar-registry" }
soar-utils = { version = "0.4.1", path = "crates/soar-utils" }
squishy = { version = "0.5.0", features = ["appimage", "dwarfs"] }
tabled = { version = "0.20", 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.1"
version = "0.12.2"
description = "A modern package manager for Linux"
default-run = "soar"
license.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.8.0](https://github.com/pkgforge/soar/compare/soar-config-v0.7.0...soar-config-v0.8.0) - 2026-06-04

### ⛰️ Features

- *(sandbox)* Add enabled flag and global defaults - ([a3a4431](https://github.com/pkgforge/soar/commit/a3a4431873a79da17e1c4026846ebd44ea24ab71))

## [0.7.0](https://github.com/pkgforge/soar/compare/soar-config-v0.6.0...soar-config-v0.7.0) - 2026-04-10

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

## [0.16.0](https://github.com/pkgforge/soar/compare/soar-core-v0.15.0...soar-core-v0.16.0) - 2026-06-04

### ⛰️ Features

- *(sandbox)* Add enabled flag and global defaults - ([a3a4431](https://github.com/pkgforge/soar/commit/a3a4431873a79da17e1c4026846ebd44ea24ab71))

### πŸ› Bug Fixes

- *(dl)* Verify download integrity ([#168](https://github.com/pkgforge/soar/pull/168)) - ([336f2dd](https://github.com/pkgforge/soar/commit/336f2dde6cb8d1c112f4f558129ed53bf0888d03))
- *(progress)* Emit build/hook events to clear spinner during build - ([306f001](https://github.com/pkgforge/soar/commit/306f00120e23834658d17b82bfc3eec6f22280d3))

## [0.15.0](https://github.com/pkgforge/soar/compare/soar-core-v0.14.0...soar-core-v0.15.0) - 2026-04-10

### ⛰️ 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.15.0"
version = "0.16.0"
description = "Core library for soar package manager"
license.workspace = true
edition.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.5.2](https://github.com/pkgforge/soar/compare/soar-db-v0.5.1...soar-db-v0.5.2) - 2026-06-04

### βš™οΈ Miscellaneous Tasks

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

## [0.5.1](https://github.com/pkgforge/soar/compare/soar-db-v0.5.0...soar-db-v0.5.1) - 2026-04-10

### ⛰️ 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.5.1"
version = "0.5.2"
description = "Database operations for soar package manager"
license.workspace = true
edition.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.10.0](https://github.com/pkgforge/soar/compare/soar-dl-v0.9.1...soar-dl-v0.10.0) - 2026-06-04

### πŸ› Bug Fixes

- *(dl)* Verify download integrity ([#168](https://github.com/pkgforge/soar/pull/168)) - ([336f2dd](https://github.com/pkgforge/soar/commit/336f2dde6cb8d1c112f4f558129ed53bf0888d03))
- *(oci)* Confine untrusted layer titles to the output directory - ([c9db71d](https://github.com/pkgforge/soar/commit/c9db71d4cf31e343e06c8b1079eec154c459b571))

## [0.9.1](https://github.com/pkgforge/soar/compare/soar-dl-v0.9.0...soar-dl-v0.9.1) - 2026-04-10

### ⚑ Performance
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.9.1"
version = "0.10.0"
description = "Downloader for soar package manager"
license.workspace = true
edition.workspace = true
Expand Down
8 changes: 8 additions & 0 deletions crates/soar-operations/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@

## [0.2.1](https://github.com/pkgforge/soar/compare/soar-operations-v0.2.0...soar-operations-v0.2.1) - 2026-06-04

### πŸ› Bug Fixes

- *(dl)* Verify download integrity ([#168](https://github.com/pkgforge/soar/pull/168)) - ([336f2dd](https://github.com/pkgforge/soar/commit/336f2dde6cb8d1c112f4f558129ed53bf0888d03))
- *(progress)* Emit build/hook events to clear spinner during build - ([306f001](https://github.com/pkgforge/soar/commit/306f00120e23834658d17b82bfc3eec6f22280d3))
- *(search)* Dedup "did you mean?" suggestions across repos - ([85d5b8e](https://github.com/pkgforge/soar/commit/85d5b8ee205c26dc307a5f3354571b6ddb322377))

## [0.2.0](https://github.com/pkgforge/soar/compare/soar-operations-v0.1.0...soar-operations-v0.2.0) - 2026-04-10

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

## [0.3.2](https://github.com/pkgforge/soar/compare/soar-package-v0.3.1...soar-package-v0.3.2) - 2026-06-04

### πŸ› Bug Fixes

- *(dl)* Verify download integrity ([#168](https://github.com/pkgforge/soar/pull/168)) - ([336f2dd](https://github.com/pkgforge/soar/commit/336f2dde6cb8d1c112f4f558129ed53bf0888d03))
- *(integrate)* Don't treat package binary as desktop file - ([a7d8a4f](https://github.com/pkgforge/soar/commit/a7d8a4fd89a3c31d4b00cc9dc43acdeb13d293bd))

## [0.3.1](https://github.com/pkgforge/soar/compare/soar-package-v0.3.0...soar-package-v0.3.1) - 2026-04-10

### βš™οΈ 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.3.1"
version = "0.3.2"
description = "Package format handling for soar package manager"
edition.workspace = true
readme.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.4.2](https://github.com/pkgforge/soar/compare/soar-registry-v0.4.1...soar-registry-v0.4.2) - 2026-06-04

### βš™οΈ Miscellaneous Tasks

- Updated the following local packages: soar-utils, soar-config, soar-dl - ([0000000](https://github.com/pkgforge/soar/commit/0000000))

## [0.4.1](https://github.com/pkgforge/soar/compare/soar-registry-v0.4.0...soar-registry-v0.4.1) - 2026-04-10

### βš™οΈ Miscellaneous Tasks
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.4.1"
version = "0.4.2"
description = "Registry management for soar package manager"
edition.workspace = true
readme.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.4.1](https://github.com/pkgforge/soar/compare/soar-utils-v0.4.0...soar-utils-v0.4.1) - 2026-06-04

### πŸ› Bug Fixes

- *(dl)* Verify download integrity ([#168](https://github.com/pkgforge/soar/pull/168)) - ([336f2dd](https://github.com/pkgforge/soar/commit/336f2dde6cb8d1c112f4f558129ed53bf0888d03))

## [0.4.0](https://github.com/pkgforge/soar/compare/soar-utils-v0.3.0...soar-utils-v0.4.0) - 2026-02-24

### ⛰️ 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.4.0"
version = "0.4.1"
description = "Utilities for soar package manager"
license.workspace = true
edition.workspace = true
Expand Down