Skip to content

Commit c1ccd61

Browse files
authored
chore: release
1 parent efb6b31 commit c1ccd61

File tree

22 files changed

+240
-29
lines changed

22 files changed

+240
-29
lines changed

CHANGELOG.md

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

2+
## [0.11.1](https://github.com/pkgforge/soar/compare/v0.11.0...v0.11.1) - 2026-02-22
3+
4+
### ⛰️ Features
5+
6+
- *(cli)* Add subcommand to convert json to sqlite db - ([16fdeca](https://github.com/pkgforge/soar/commit/16fdecae0898c1e15c5d0ca1ea67c5b414ef7c76))
7+
- *(lock)* Add locking for concurrent process safety ([#154](https://github.com/pkgforge/soar/pull/154)) - ([e3bef6a](https://github.com/pkgforge/soar/commit/e3bef6a09435e83a524b719f7b9f3e0d133c6b64))
8+
- *(provides)* Add @ prefix to symlink packages directly to bin - ([cc8458a](https://github.com/pkgforge/soar/commit/cc8458ab722f4287315fee7a457be0191c10a19d))
9+
10+
### 🐛 Bug Fixes
11+
12+
- *(clippy)* Apply clippy suggestions - ([7b85532](https://github.com/pkgforge/soar/commit/7b85532d78baa32ee9541a2d764242656a8c07ba))
13+
- *(provides)* Remove provides filter and add bin_symlink_names helper - ([5ed1951](https://github.com/pkgforge/soar/commit/5ed1951c71c47e12098e6485c607fd5c315fb5a4))
14+
- *(substitute)* Normalize package version - ([c66c4c2](https://github.com/pkgforge/soar/commit/c66c4c23ff9f68c7926c3ffb81ac18553f9ce604))
15+
16+
### 🚜 Refactor
17+
18+
- *(cli)* Use operations from shared crate ([#158](https://github.com/pkgforge/soar/pull/158)) - ([2a2f1be](https://github.com/pkgforge/soar/commit/2a2f1be5db831de95c2d99e114d02c80870f2165))
19+
- *(db)* Add pkg_family, drop recurse_provides - ([1d97b6d](https://github.com/pkgforge/soar/commit/1d97b6d0f9dc230a306fee936dc6571a0a658be3))
20+
- *(download)* Remove proxy api - ([1d3e0ac](https://github.com/pkgforge/soar/commit/1d3e0acc8346834009711cb9f1ad4fbd3454849e))
21+
- *(pubkey)* Use inline key string instead of fetching from URL - ([f2f3e5c](https://github.com/pkgforge/soar/commit/f2f3e5c1190fd79d18732ea2efb4b668d8130f03))
22+
- *(repositories)* Add soarpkgs, drop bincache and pkgcache - ([d07d602](https://github.com/pkgforge/soar/commit/d07d602dc9e972944b7516ac798036e5ddcc689f))
23+
- *(system)* Add per-context system mode support - ([10544ac](https://github.com/pkgforge/soar/commit/10544ac8a2bd896152448f79650c6d98db0d960a))
24+
225
## [0.11.0](https://github.com/pkgforge/soar/compare/v0.10.3...v0.11.0) - 2026-02-04
326

427
### ⛰️ Features

Cargo.lock

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

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ semver = "1.0.27"
5656
serde = { version = "1.0.228", features = ["derive"] }
5757
serde_json = { version = "1.0.149", features = ["indexmap"] }
5858
serial_test = "3.3.1"
59-
soar-config = { version = "0.5.0", path = "crates/soar-config" }
60-
soar-core = { version = "0.13.0", path = "crates/soar-core" }
61-
soar-db = { version = "0.4.0", path = "crates/soar-db" }
62-
soar-dl = { version = "0.8.0", path = "crates/soar-dl" }
63-
soar-events = { version = "0.0.0", path = "crates/soar-events" }
64-
soar-operations = { version = "0.0.0", path = "crates/soar-operations" }
65-
soar-package = { version = "0.2.3", path = "crates/soar-package" }
66-
soar-registry = { version = "0.3.0", path = "crates/soar-registry" }
67-
soar-utils = { version = "0.3.0", path = "crates/soar-utils" }
59+
soar-config = { version = "0.6.0", path = "crates/soar-config" }
60+
soar-core = { version = "0.14.0", path = "crates/soar-core" }
61+
soar-db = { version = "0.5.0", path = "crates/soar-db" }
62+
soar-dl = { version = "0.9.0", path = "crates/soar-dl" }
63+
soar-events = { version = "0.0.1", path = "crates/soar-events" }
64+
soar-operations = { version = "0.0.1", path = "crates/soar-operations" }
65+
soar-package = { version = "0.3.0", path = "crates/soar-package" }
66+
soar-registry = { version = "0.4.0", path = "crates/soar-registry" }
67+
soar-utils = { version = "0.4.0", path = "crates/soar-utils" }
6868
squishy = { version = "0.4.0", features = ["appimage", "dwarfs"] }
6969
tabled = { version = "0.20", features = ["ansi"] }
7070
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.11.0"
3+
version = "0.11.1"
44
description = "A modern package manager for Linux"
55
default-run = "soar"
66
authors.workspace = true

crates/soar-config/CHANGELOG.md

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

2+
## [0.6.0](https://github.com/pkgforge/soar/compare/soar-config-v0.5.0...soar-config-v0.6.0) - 2026-02-22
3+
4+
### 🐛 Bug Fixes
5+
6+
- *(clippy)* Apply clippy suggestions - ([7b85532](https://github.com/pkgforge/soar/commit/7b85532d78baa32ee9541a2d764242656a8c07ba))
7+
8+
### 🚜 Refactor
9+
10+
- *(pubkey)* Use inline key string instead of fetching from URL - ([f2f3e5c](https://github.com/pkgforge/soar/commit/f2f3e5c1190fd79d18732ea2efb4b668d8130f03))
11+
- *(repositories)* Add soarpkgs, drop bincache and pkgcache - ([d07d602](https://github.com/pkgforge/soar/commit/d07d602dc9e972944b7516ac798036e5ddcc689f))
12+
- *(system)* Add per-context system mode support - ([10544ac](https://github.com/pkgforge/soar/commit/10544ac8a2bd896152448f79650c6d98db0d960a))
13+
214
## [0.5.0](https://github.com/pkgforge/soar/compare/soar-config-v0.4.0...soar-config-v0.5.0) - 2026-02-04
315

416
### ⛰️ 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.5.0"
3+
version = "0.6.0"
44
description = "Configuration management for soar package manager"
55
authors.workspace = true
66
edition.workspace = true

crates/soar-core/CHANGELOG.md

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

2+
## [0.14.0](https://github.com/pkgforge/soar/compare/soar-core-v0.13.0...soar-core-v0.14.0) - 2026-02-22
3+
4+
### ⛰️ Features
5+
6+
- *(provides)* Add @ prefix to symlink packages directly to bin - ([cc8458a](https://github.com/pkgforge/soar/commit/cc8458ab722f4287315fee7a457be0191c10a19d))
7+
8+
### 🐛 Bug Fixes
9+
10+
- *(provides)* Remove provides filter and add bin_symlink_names helper - ([5ed1951](https://github.com/pkgforge/soar/commit/5ed1951c71c47e12098e6485c607fd5c315fb5a4))
11+
- *(substitute)* Normalize package version - ([c66c4c2](https://github.com/pkgforge/soar/commit/c66c4c23ff9f68c7926c3ffb81ac18553f9ce604))
12+
13+
### 🚜 Refactor
14+
15+
- *(db)* Add pkg_family, drop recurse_provides - ([1d97b6d](https://github.com/pkgforge/soar/commit/1d97b6d0f9dc230a306fee936dc6571a0a658be3))
16+
- *(system)* Add per-context system mode support - ([10544ac](https://github.com/pkgforge/soar/commit/10544ac8a2bd896152448f79650c6d98db0d960a))
17+
218
## [0.13.0](https://github.com/pkgforge/soar/compare/soar-core-v0.12.0...soar-core-v0.13.0) - 2026-02-04
319

420
### ⛰️ 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.13.0"
3+
version = "0.14.0"
44
description = "Core library for soar package manager"
55
authors.workspace = true
66
license.workspace = true

crates/soar-db/CHANGELOG.md

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

2+
## [0.5.0](https://github.com/pkgforge/soar/compare/soar-db-v0.4.0...soar-db-v0.5.0) - 2026-02-22
3+
4+
### ⛰️ Features
5+
6+
- *(provides)* Add @ prefix to symlink packages directly to bin - ([cc8458a](https://github.com/pkgforge/soar/commit/cc8458ab722f4287315fee7a457be0191c10a19d))
7+
8+
### 🐛 Bug Fixes
9+
10+
- *(clippy)* Apply clippy suggestions - ([7b85532](https://github.com/pkgforge/soar/commit/7b85532d78baa32ee9541a2d764242656a8c07ba))
11+
- *(provides)* Remove provides filter and add bin_symlink_names helper - ([5ed1951](https://github.com/pkgforge/soar/commit/5ed1951c71c47e12098e6485c607fd5c315fb5a4))
12+
13+
### 🚜 Refactor
14+
15+
- *(db)* Add pkg_family, drop recurse_provides - ([1d97b6d](https://github.com/pkgforge/soar/commit/1d97b6d0f9dc230a306fee936dc6571a0a658be3))
16+
- *(system)* Add per-context system mode support - ([10544ac](https://github.com/pkgforge/soar/commit/10544ac8a2bd896152448f79650c6d98db0d960a))
17+
218
## [0.4.0](https://github.com/pkgforge/soar/compare/soar-db-v0.3.2...soar-db-v0.4.0) - 2026-02-04
319

420
### ⛰️ 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.4.0"
3+
version = "0.5.0"
44
description = "Database operations for soar package manager"
55
authors.workspace = true
66
license.workspace = true

0 commit comments

Comments
 (0)