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

## [0.13.3](https://github.com/pkgforge/soar/compare/v0.13.2...v0.13.3) - 2026-08-31

### ⛰️ Features

- *(progress)* Show feedback while waiting on the remote ([#206](https://github.com/pkgforge/soar/pull/206)) - ([c2b536d](https://github.com/pkgforge/soar/commit/c2b536da1f1238cc34c40efceab35516c9b95366))

### πŸ› Bug Fixes

- *(db)* Stop reconverting JSONB metadata columns on every open ([#203](https://github.com/pkgforge/soar/pull/203)) - ([a5ea564](https://github.com/pkgforge/soar/commit/a5ea564b6ac8840b4d0fbc8790fe960265c83e3b))
- *(progress)* Clear the batch bar when the batch finishes - ([6cfe25e](https://github.com/pkgforge/soar/commit/6cfe25e8be64aa6492f2e145c921a536c1a344f7))
- *(system)* Only escalate for commands that write - ([1d7f1ef](https://github.com/pkgforge/soar/commit/1d7f1ef39e4cb6860423e365b8a7fbb8c8f15324))
- *(zsync)* Require https and honor pinned checksums - ([c1a0d9a](https://github.com/pkgforge/soar/commit/c1a0d9af0bf05c5eddfb4cbfd7946255c09a6d84))

### 🎨 Styling

- Fmt - ([3af0b8e](https://github.com/pkgforge/soar/commit/3af0b8ea04a6d2bfd768ecfd55f6e461f6c60b22))

### βš™οΈ Miscellaneous Tasks

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

## [0.13.2](https://github.com/pkgforge/soar/compare/v0.13.1...v0.13.2) - 2026-08-15

### ⛰️ 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.229", features = ["derive"] }
serde_json = { version = "1.0.151", features = ["indexmap"] }
serial_test = "3.5.0"
sha2 = "0.11.0"
soar-config = { version = "0.12.1", path = "crates/soar-config" }
soar-core = { version = "0.17.2", path = "crates/soar-core" }
soar-db = { version = "0.7.0", path = "crates/soar-db" }
soar-dl = { version = "0.12.1", path = "crates/soar-dl" }
soar-events = { version = "0.3.0", path = "crates/soar-events" }
soar-operations = { version = "0.5.0", path = "crates/soar-operations" }
soar-package = { version = "0.5.1", path = "crates/soar-package" }
soar-registry = { version = "0.6.2", path = "crates/soar-registry" }
soar-utils = { version = "0.5.1", path = "crates/soar-utils" }
soar-config = { version = "0.12.2", path = "crates/soar-config" }
soar-core = { version = "0.17.3", path = "crates/soar-core" }
soar-db = { version = "0.7.1", path = "crates/soar-db" }
soar-dl = { version = "0.12.2", path = "crates/soar-dl" }
soar-events = { version = "0.3.1", path = "crates/soar-events" }
soar-operations = { version = "0.5.1", path = "crates/soar-operations" }
soar-package = { version = "0.5.2", path = "crates/soar-package" }
soar-registry = { version = "0.6.3", path = "crates/soar-registry" }
soar-utils = { version = "0.5.2", 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.13.2"
version = "0.13.3"
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.12.2](https://github.com/pkgforge/soar/compare/soar-config-v0.12.1...soar-config-v0.12.2) - 2026-08-31

### βš™οΈ Miscellaneous Tasks

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

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

### ⛰️ 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.12.1"
version = "0.12.2"
description = "Configuration management for soar package manager"
edition.workspace = true
readme.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.17.3](https://github.com/pkgforge/soar/compare/soar-core-v0.17.2...soar-core-v0.17.3) - 2026-08-31

### πŸ› Bug Fixes

- *(zsync)* Require https and honor pinned checksums - ([c1a0d9a](https://github.com/pkgforge/soar/commit/c1a0d9af0bf05c5eddfb4cbfd7946255c09a6d84))

## [0.17.2](https://github.com/pkgforge/soar/compare/soar-core-v0.17.1...soar-core-v0.17.2) - 2026-08-15

### ⛰️ 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.17.2"
version = "0.17.3"
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.7.1](https://github.com/pkgforge/soar/compare/soar-db-v0.7.0...soar-db-v0.7.1) - 2026-08-31

### πŸ› Bug Fixes

- *(db)* Stop reconverting JSONB metadata columns on every open ([#203](https://github.com/pkgforge/soar/pull/203)) - ([a5ea564](https://github.com/pkgforge/soar/commit/a5ea564b6ac8840b4d0fbc8790fe960265c83e3b))

## [0.7.0](https://github.com/pkgforge/soar/compare/soar-db-v0.6.1...soar-db-v0.7.0) - 2026-08-15

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

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

### ⛰️ Features

- *(progress)* Show feedback while waiting on the remote ([#206](https://github.com/pkgforge/soar/pull/206)) - ([c2b536d](https://github.com/pkgforge/soar/commit/c2b536da1f1238cc34c40efceab35516c9b95366))

### πŸ› Bug Fixes

- *(zsync)* Require https and honor pinned checksums - ([c1a0d9a](https://github.com/pkgforge/soar/commit/c1a0d9af0bf05c5eddfb4cbfd7946255c09a6d84))

### 🎨 Styling

- Fmt - ([3af0b8e](https://github.com/pkgforge/soar/commit/3af0b8ea04a6d2bfd768ecfd55f6e461f6c60b22))

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

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

## [0.3.1](https://github.com/pkgforge/soar/compare/soar-events-v0.3.0...soar-events-v0.3.1) - 2026-08-31

### ⛰️ Features

- *(progress)* Show feedback while waiting on the remote ([#206](https://github.com/pkgforge/soar/pull/206)) - ([c2b536d](https://github.com/pkgforge/soar/commit/c2b536da1f1238cc34c40efceab35516c9b95366))

## [0.3.0](https://github.com/pkgforge/soar/compare/soar-events-v0.2.0...soar-events-v0.3.0) - 2026-08-15

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

## [0.5.1](https://github.com/pkgforge/soar/compare/soar-operations-v0.5.0...soar-operations-v0.5.1) - 2026-08-31

### ⛰️ Features

- *(progress)* Show feedback while waiting on the remote ([#206](https://github.com/pkgforge/soar/pull/206)) - ([c2b536d](https://github.com/pkgforge/soar/commit/c2b536da1f1238cc34c40efceab35516c9b95366))

### πŸ› Bug Fixes

- *(db)* Stop reconverting JSONB metadata columns on every open ([#203](https://github.com/pkgforge/soar/pull/203)) - ([a5ea564](https://github.com/pkgforge/soar/commit/a5ea564b6ac8840b4d0fbc8790fe960265c83e3b))
- *(system)* Only escalate for commands that write - ([1d7f1ef](https://github.com/pkgforge/soar/commit/1d7f1ef39e4cb6860423e365b8a7fbb8c8f15324))

## [0.5.0](https://github.com/pkgforge/soar/compare/soar-operations-v0.4.1...soar-operations-v0.5.0) - 2026-08-15

### ⛰️ 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.5.0"
version = "0.5.1"
description = "Business logic for soar package manager"
license.workspace = true
edition.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.5.2](https://github.com/pkgforge/soar/compare/soar-package-v0.5.1...soar-package-v0.5.2) - 2026-08-31

### βš™οΈ Miscellaneous Tasks

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

## [0.5.1](https://github.com/pkgforge/soar/compare/soar-package-v0.5.0...soar-package-v0.5.1) - 2026-08-15

### ⛰️ 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.5.1"
version = "0.5.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.6.3](https://github.com/pkgforge/soar/compare/soar-registry-v0.6.2...soar-registry-v0.6.3) - 2026-08-31

### πŸ› Bug Fixes

- *(db)* Stop reconverting JSONB metadata columns on every open ([#203](https://github.com/pkgforge/soar/pull/203)) - ([a5ea564](https://github.com/pkgforge/soar/commit/a5ea564b6ac8840b4d0fbc8790fe960265c83e3b))

## [0.6.2](https://github.com/pkgforge/soar/compare/soar-registry-v0.6.1...soar-registry-v0.6.2) - 2026-08-15

### ⛰️ 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.6.2"
version = "0.6.3"
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.5.2](https://github.com/pkgforge/soar/compare/soar-utils-v0.5.1...soar-utils-v0.5.2) - 2026-08-31

### πŸ› Bug Fixes

- *(system)* Only escalate for commands that write - ([1d7f1ef](https://github.com/pkgforge/soar/commit/1d7f1ef39e4cb6860423e365b8a7fbb8c8f15324))

## [0.5.1](https://github.com/pkgforge/soar/compare/soar-utils-v0.5.0...soar-utils-v0.5.1) - 2026-08-15

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