Skip to content

Commit 44aa99e

Browse files
committed
chore(release): v0.5.7
1 parent c2de6a7 commit 44aa99e

File tree

6 files changed

+21
-8
lines changed

6 files changed

+21
-8
lines changed

CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11

2-
## [0.5.6](https://github.com/pkgforge/soar/compare/v0.5.5..0.5.6) - 2025-02-15
2+
## [0.5.7](https://github.com/pkgforge/soar/compare/v0.5.6..v0.5.7) - 2025-02-17
3+
4+
### ⛰️ Features
5+
6+
- *(download)* Try downloading package if url is invalid - ([6bd2a34](https://github.com/pkgforge/soar/commit/6bd2a34123b0e7c41c8923e44ffd9ae205013438))
7+
8+
### 🐛 Bug Fixes
9+
10+
- *(config)* Print default config if config file doesn't exist - ([3ba2a63](https://github.com/pkgforge/soar/commit/3ba2a63e2e67db511ba57340b73a328615148db1))
11+
- *(metadata)* Fix metadata sync interval handling - ([c2de6a7](https://github.com/pkgforge/soar/commit/c2de6a78d83cbbeaf9b8eec69daef6a6a5fbf0ea))
12+
- *(query)* Handle full package query - ([bb944c0](https://github.com/pkgforge/soar/commit/bb944c0eef586c64e817370545522c63b59e9498))
13+
14+
15+
## [0.5.6](https://github.com/pkgforge/soar/compare/v0.5.5..v0.5.6) - 2025-02-15
316

417
### ⛰️ Features
518

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<p align="center">
3131
<a href="https://soar.qaidvoid.dev/installation">
32-
<img src="https://soar.pkgforge.dev/gif?version=v0.5.6" alt="soar-list" width="850">
32+
<img src="https://soar.pkgforge.dev/gif?version=v0.5.7" alt="soar-list" width="850">
3333
</a><br>
3434
</p>
3535

soar-cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "soar-cli"
3-
version = "0.5.6"
3+
version = "0.5.7"
44
description = "A modern package manager for Linux"
55
default-run = "soar"
66
authors.workspace = true
@@ -29,7 +29,7 @@ reqwest = { workspace = true }
2929
rusqlite = { workspace = true }
3030
serde = { workspace = true }
3131
serde_json = { workspace = true }
32-
soar-core = { version = "0.1.6", path = "../soar-core" }
32+
soar-core = { version = "0.1.7", path = "../soar-core" }
3333
soar-dl = { workspace = true }
3434
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
3535
toml = "0.8.19"

soar-cli/src/state.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use std::{
2-
fs::{self, File},
2+
fs::File,
33
path::PathBuf,
44
sync::{Arc, Mutex, RwLockReadGuard},
55
};

soar-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "soar-core"
3-
version = "0.1.6"
3+
version = "0.1.7"
44
description = "Core library for soar package manager"
55
authors.workspace = true
66
license.workspace = true

0 commit comments

Comments
 (0)