Skip to content

Commit fe7a6f4

Browse files
authored
chore: release (#166)
1 parent a7d8a4f commit fe7a6f4

20 files changed

Lines changed: 95 additions & 26 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11

2+
## [0.12.2](https://github.com/pkgforge/soar/compare/v0.12.1...v0.12.2) - 2026-06-04
3+
4+
### ⛰️ Features
5+
6+
- *(cli)* Add shell completions command - ([401fb04](https://github.com/pkgforge/soar/commit/401fb0466844bd05acdb5d847e19d0dcd5d4141b))
7+
- *(sandbox)* Add enabled flag and global defaults - ([a3a4431](https://github.com/pkgforge/soar/commit/a3a4431873a79da17e1c4026846ebd44ea24ab71))
8+
9+
### 🐛 Bug Fixes
10+
11+
- *(dl)* Verify download integrity ([#168](https://github.com/pkgforge/soar/pull/168)) - ([336f2dd](https://github.com/pkgforge/soar/commit/336f2dde6cb8d1c112f4f558129ed53bf0888d03))
12+
- *(progress)* Emit build/hook events to clear spinner during build - ([306f001](https://github.com/pkgforge/soar/commit/306f00120e23834658d17b82bfc3eec6f22280d3))
13+
214
## [0.12.1](https://github.com/pkgforge/soar/compare/v0.12.0...v0.12.1) - 2026-04-10
315

416
### ⛰️ Features

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ serde = { version = "1.0.228", features = ["derive"] }
5959
serde_json = { version = "1.0.149", features = ["indexmap"] }
6060
serial_test = "3.3.1"
6161
sha2 = "0.10.9"
62-
soar-config = { version = "0.7.0", path = "crates/soar-config" }
63-
soar-core = { version = "0.15.0", path = "crates/soar-core" }
64-
soar-db = { version = "0.5.1", path = "crates/soar-db" }
65-
soar-dl = { version = "0.9.1", path = "crates/soar-dl" }
62+
soar-config = { version = "0.8.0", path = "crates/soar-config" }
63+
soar-core = { version = "0.16.0", path = "crates/soar-core" }
64+
soar-db = { version = "0.5.2", path = "crates/soar-db" }
65+
soar-dl = { version = "0.10.0", path = "crates/soar-dl" }
6666
soar-events = { version = "0.1.0", path = "crates/soar-events" }
67-
soar-operations = { version = "0.2.0", path = "crates/soar-operations" }
68-
soar-package = { version = "0.3.1", path = "crates/soar-package" }
69-
soar-registry = { version = "0.4.1", path = "crates/soar-registry" }
70-
soar-utils = { version = "0.4.0", path = "crates/soar-utils" }
67+
soar-operations = { version = "0.2.1", path = "crates/soar-operations" }
68+
soar-package = { version = "0.3.2", path = "crates/soar-package" }
69+
soar-registry = { version = "0.4.2", path = "crates/soar-registry" }
70+
soar-utils = { version = "0.4.1", path = "crates/soar-utils" }
7171
squishy = { version = "0.5.0", features = ["appimage", "dwarfs"] }
7272
tabled = { version = "0.20", features = ["ansi"] }
7373
terminal_size = "0.4"

crates/soar-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "soar-cli"
3-
version = "0.12.1"
3+
version = "0.12.2"
44
description = "A modern package manager for Linux"
55
default-run = "soar"
66
license.workspace = true

crates/soar-config/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11

2+
## [0.8.0](https://github.com/pkgforge/soar/compare/soar-config-v0.7.0...soar-config-v0.8.0) - 2026-06-04
3+
4+
### ⛰️ Features
5+
6+
- *(sandbox)* Add enabled flag and global defaults - ([a3a4431](https://github.com/pkgforge/soar/commit/a3a4431873a79da17e1c4026846ebd44ea24ab71))
7+
28
## [0.7.0](https://github.com/pkgforge/soar/compare/soar-config-v0.6.0...soar-config-v0.7.0) - 2026-04-10
39

410
### ⛰️ Features

crates/soar-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "soar-config"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
description = "Configuration management for soar package manager"
55
edition.workspace = true
66
readme.workspace = true

crates/soar-core/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11

2+
## [0.16.0](https://github.com/pkgforge/soar/compare/soar-core-v0.15.0...soar-core-v0.16.0) - 2026-06-04
3+
4+
### ⛰️ Features
5+
6+
- *(sandbox)* Add enabled flag and global defaults - ([a3a4431](https://github.com/pkgforge/soar/commit/a3a4431873a79da17e1c4026846ebd44ea24ab71))
7+
8+
### 🐛 Bug Fixes
9+
10+
- *(dl)* Verify download integrity ([#168](https://github.com/pkgforge/soar/pull/168)) - ([336f2dd](https://github.com/pkgforge/soar/commit/336f2dde6cb8d1c112f4f558129ed53bf0888d03))
11+
- *(progress)* Emit build/hook events to clear spinner during build - ([306f001](https://github.com/pkgforge/soar/commit/306f00120e23834658d17b82bfc3eec6f22280d3))
12+
213
## [0.15.0](https://github.com/pkgforge/soar/compare/soar-core-v0.14.0...soar-core-v0.15.0) - 2026-04-10
314

415
### ⛰️ Features

crates/soar-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "soar-core"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
description = "Core library for soar package manager"
55
license.workspace = true
66
edition.workspace = true

crates/soar-db/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11

2+
## [0.5.2](https://github.com/pkgforge/soar/compare/soar-db-v0.5.1...soar-db-v0.5.2) - 2026-06-04
3+
4+
### ⚙️ Miscellaneous Tasks
5+
6+
- Updated the following local packages: soar-registry - ([0000000](https://github.com/pkgforge/soar/commit/0000000))
7+
28
## [0.5.1](https://github.com/pkgforge/soar/compare/soar-db-v0.5.0...soar-db-v0.5.1) - 2026-04-10
39

410
### ⛰️ Features

crates/soar-db/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "soar-db"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
description = "Database operations for soar package manager"
55
license.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)