Skip to content

Commit 69e1d04

Browse files
authored
chore: release
1 parent 08d7c18 commit 69e1d04

File tree

16 files changed

+67
-20
lines changed

16 files changed

+67
-20
lines changed

CHANGELOG.md

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

2+
## [0.12.1](https://github.com/pkgforge/soar/compare/v0.12.0...v0.12.1) - 2026-03-10
3+
4+
### ⛰️ Features
5+
6+
- *(cli)* Add `soar repo` subcommand for repository management - ([08d7c18](https://github.com/pkgforge/soar/commit/08d7c18697ff7a8467c5d60475877db1dff45636))
7+
- *(packages)* Add arch_map for custom arch name mapping - ([61c0efb](https://github.com/pkgforge/soar/commit/61c0efb1e95127bde2574480a3971ff2f57e125a))
8+
- *(repo)* Add repository management operations (add, update, remove) - ([fc76b6f](https://github.com/pkgforge/soar/commit/fc76b6f9b97d3ae53b760d33fd1a2cf258eb165a))
9+
210
## [0.12.0](https://github.com/pkgforge/soar/compare/v0.11.0...v0.12.0) - 2026-02-24
311

412
### ⛰️ Features

Cargo.lock

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

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ 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.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" }
59+
soar-config = { version = "0.7.0", path = "crates/soar-config" }
60+
soar-core = { version = "0.15.0", path = "crates/soar-core" }
61+
soar-db = { version = "0.5.1", path = "crates/soar-db" }
6262
soar-dl = { version = "0.9.0", path = "crates/soar-dl" }
6363
soar-events = { version = "0.1.0", path = "crates/soar-events" }
64-
soar-operations = { version = "0.1.0", 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" }
64+
soar-operations = { version = "0.2.0", path = "crates/soar-operations" }
65+
soar-package = { version = "0.3.1", path = "crates/soar-package" }
66+
soar-registry = { version = "0.4.1", path = "crates/soar-registry" }
6767
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"] }

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.0"
3+
version = "0.12.1"
44
description = "A modern package manager for Linux"
55
default-run = "soar"
66
license.workspace = true

crates/soar-config/CHANGELOG.md

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

2+
## [0.7.0](https://github.com/pkgforge/soar/compare/soar-config-v0.6.0...soar-config-v0.7.0) - 2026-03-10
3+
4+
### ⛰️ Features
5+
6+
- *(packages)* Add arch_map for custom arch name mapping - ([61c0efb](https://github.com/pkgforge/soar/commit/61c0efb1e95127bde2574480a3971ff2f57e125a))
7+
- *(repo)* Add repository management operations (add, update, remove) - ([fc76b6f](https://github.com/pkgforge/soar/commit/fc76b6f9b97d3ae53b760d33fd1a2cf258eb165a))
8+
29
## [0.6.0](https://github.com/pkgforge/soar/compare/soar-config-v0.5.0...soar-config-v0.6.0) - 2026-02-24
310

411
### 🐛 Bug Fixes

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.6.0"
3+
version = "0.7.0"
44
description = "Configuration management for soar package manager"
55
edition.workspace = true
66
readme.workspace = true

crates/soar-core/CHANGELOG.md

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

2+
## [0.15.0](https://github.com/pkgforge/soar/compare/soar-core-v0.14.0...soar-core-v0.15.0) - 2026-03-10
3+
4+
### ⛰️ Features
5+
6+
- *(packages)* Add arch_map for custom arch name mapping - ([61c0efb](https://github.com/pkgforge/soar/commit/61c0efb1e95127bde2574480a3971ff2f57e125a))
7+
28
## [0.14.0](https://github.com/pkgforge/soar/compare/soar-core-v0.13.0...soar-core-v0.14.0) - 2026-02-24
39

410
### ⛰️ 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.14.0"
3+
version = "0.15.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.1](https://github.com/pkgforge/soar/compare/soar-db-v0.5.0...soar-db-v0.5.1) - 2026-03-10
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.0](https://github.com/pkgforge/soar/compare/soar-db-v0.4.0...soar-db-v0.5.0) - 2026-02-24
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.0"
3+
version = "0.5.1"
44
description = "Database operations for soar package manager"
55
license.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)