Skip to content

Commit

Permalink
chore(release): v0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
QaidVoid committed Nov 5, 2024
1 parent ca7437b commit 4bd9739
Show file tree
Hide file tree
Showing 6 changed files with 127 additions and 109 deletions.
191 changes: 104 additions & 87 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "soar-cli"
version = "0.4.1"
version = "0.4.2"
authors = ["Rabindra Dhakal <[email protected]>"]
description = "A modern package manager for Linux"
license = "MIT"
Expand Down
35 changes: 18 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Soar Package Manager

Soar is a fast Linux package manager that doesn't suck. Works with static binaries, AppImages, and other portable stuff.

[![Crates.io](https://img.shields.io/crates/v/soar-cli)](https://crates.io/crates/soar-cli)
[![Documentation](https://img.shields.io/badge/docs-soar.qaidvoid.dev-blue)](https://soar.qaidvoid.dev)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Soar is a fast Linux package manager that doesn't suck. Works with static binaries, AppImages, and other portable stuff.

<p align="center">
<img src="icons/hicolor/scalable/apps/soar.svg" alt="soar" width="256"/>
</p>
Expand All @@ -23,21 +23,22 @@ Installation guide can be found [here](https://soar.qaidvoid.dev/installation.ht
Usage: soar [OPTIONS] <COMMAND>

Commands:
install Install packages [aliases: i, add]
search Search package [aliases: s, find]
query Query package info [aliases: Q]
remove Remove packages [aliases: r, del]
sync Sync with remote metadata [aliases: S, fetch]
update Update packages [aliases: u, upgrade]
info Show info about installed packages [aliases: list-installed]
list List all available packages [aliases: ls]
log Inspect package build log
inspect Inspect package build script
run Run packages without installing to PATH [aliases: exec, execute]
use Use package from different family
download Download arbitrary files [aliases: dl]
health Health check
help Print this message or the help of the given subcommand(s)
install Install packages [aliases: i, add]
search Search package [aliases: s, find]
query Query package info [aliases: Q]
remove Remove packages [aliases: r, del]
sync Sync with remote metadata [aliases: S, fetch]
update Update packages [aliases: u, upgrade]
info Show info about installed packages [aliases: list-installed]
list List all available packages [aliases: ls]
log Inspect package build log
inspect Inspect package build script
run Run packages without installing to PATH [aliases: exec, execute]
use Use package from different family
download Download arbitrary files [aliases: dl]
health Health check
defconfig Generate default config
help Print this message or the help of the given subcommand(s)

Options:
-v, --verbose Unimplemented
Expand Down
4 changes: 2 additions & 2 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# See documentation for more information on available options.

[remote.github]
owner = "QaidVoid"
owner = "pkgforge"
repo = "soar"

[changelog]
Expand Down Expand Up @@ -73,7 +73,7 @@ footer = """
trim = true
# postprocessors
postprocessors = [
{ pattern = '<REPO>', replace = "https://github.com/QaidVoid/soar" }, # replace repository URL
{ pattern = '<REPO>', replace = "https://github.com/pkgforge/soar" }, # replace repository URL
]

[git]
Expand Down
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ pub enum Commands {
#[clap(name = "health")]
Health,

/// Generate config
/// Generate default config
#[clap(name = "defconfig")]
DefConfig,
}

0 comments on commit 4bd9739

Please sign in to comment.