diff --git a/CHANGELOG.md b/CHANGELOG.md index e2ddbba..4db5f19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,20 @@ +## [0.4.4](https://github.com/pkgforge/soar/compare/v0.4.3..0.4.4) - 2024-11-09 + +### ⛰️ Features + +- *(env)* Add environment variables support - ([426c380](https://github.com/pkgforge/soar/commit/426c3803a35801f94e71851ed9ba5773b5c6ff2f)) +- *(log)* Add tracing, verbosity, json output - ([424b0e3](https://github.com/pkgforge/soar/commit/424b0e35eb36a4ef3779bb4c69c054f4137130a4)) + +### 🐛 Bug Fixes + +- *(log)* Write info to stdout - ([295d6f7](https://github.com/pkgforge/soar/commit/295d6f7801af0a7714bf7b7409c602586a6885b9)) + +### 🚜 Refactor + +- *(install)* Use filename as binary name for local install - ([ff004ae](https://github.com/pkgforge/soar/commit/ff004aed99e972bc7f0812354c54d4498e413bc6)) + + ## [0.4.3](https://github.com/pkgforge/soar/compare/v0.4.2..v0.4.3) - 2024-11-08 ### 🐛 Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index f157415..e3d25c1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1448,7 +1448,7 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" [[package]] name = "soar-cli" -version = "0.4.3" +version = "0.4.4" dependencies = [ "anyhow", "backhand", diff --git a/Cargo.toml b/Cargo.toml index eb6560d..e8c5100 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soar-cli" -version = "0.4.3" +version = "0.4.4" authors = ["Rabindra Dhakal "] description = "A modern package manager for Linux" license = "MIT" diff --git a/README.md b/README.md index 159461e..76d96fb 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Soar is a fast Linux package manager that doesn't suck. Works with static binari - [Desktop Integration](https://soar.qaidvoid.dev/#desktop-integration) ## 🔧 Installation -Installation guide can be found [here](https://soar.qaidvoid.dev/installation.html) +Installation guide can be found [here](https://soar.qaidvoid.dev/installation.html). ## 🎯 Usage @@ -38,18 +38,21 @@ Commands: download Download arbitrary files [aliases: dl] health Health check defconfig Generate default config + env View env help Print this message or the help of the given subcommand(s) Options: - -v, --verbose Unimplemented - -h, --help Print help - -V, --version Print version + -v, --verbose... + -q, --quiet + -j, --json + -h, --help Print help + -V, --version Print version ``` ## ⚙️ Configuration Soar uses a JSON configuration file located at `~/.config/soar/config.json`. -For configuration guide, follow [here](https://soar.qaidvoid.dev/configuration.html) +For configuration guide, follow [here](https://soar.qaidvoid.dev/configuration.html). ## 🤝 Contributing