From 51fedc2ed53eda66aeebee1af7431d5796eda0aa Mon Sep 17 00:00:00 2001 From: Jack Wills <32690432+mrjackwills@users.noreply.github.com> Date: Fri, 2 Aug 2024 09:27:40 +0100 Subject: [PATCH 1/4] docs: changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5075d5c..7baafe6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,8 +15,8 @@ + left align all text, [e0d421c4](https://github.com/mrjackwills/oxker/commit/e0d421c4918a17c9e0e21fd214edb99d71281c9d) + place image name in logs panel title, [12f24357](https://github.com/mrjackwills/oxker/commit/12f24357a68abe871f44d871d95b6e2ef062181e) + distinguish between unhealthy & healthy running containers, closes [#43](https://github.com/mrjackwills/oxker/issues/43), [de876818](https://github.com/mrjackwills/oxker/commit/de8768181631c6d961ce0e4dacb50c2ed02abc36) -+ filter containers, use `F1` or `/` to enter filter mode, closes [#37](https://github.com/mrjackwills/oxker/issues/37), thanks to [MohammadShabaniSBU](https://github.com/MohammadShabaniSBU) for the original PR, [d5d8a0db](https://github.com/mrjackwills/oxker/commit/d5d8a0dbc5437ff3b17f34b9dbb9589bb56b4a3e), [[7ee1f06f804683e3395953a02138d4e9da115ea9]] -+ place image name in logs panel title, [ef19b9cf](https://github.com/mrjackwills/oxker/commit/ef19b9cf89a881d0a7ac818885317ce2bd683dfc) ++ filter containers, use `F1` or `/` to enter filter mode, closes [#37](https://github.com/mrjackwills/oxker/issues/37), thanks to [MohammadShabaniSBU](https://github.com/MohammadShabaniSBU) for the original PR, [d5d8a0db](https://github.com/mrjackwills/oxker/commit/d5d8a0dbc5437ff3b17f34b9dbb9589bb56b4a3e), [7ee1f06f](https://github.com/mrjackwills/oxker/commit/7ee1f06f804683e3395953a02138d4e9da115ea9) ++ place image name in logs panel title, [12f24357](https://github.com/mrjackwills/oxker/commit/12f24357a68abe871f44d871d95b6e2ef062181e) ### Fixes + log_sanitizer `raw()` & `remove_ansi()` now functioning as intended, [0dc98dfc](https://github.com/mrjackwills/oxker/commit/0dc98dfc8113869b81be9d697ca77418c919e4bf) From 8e9f7b654fe45fe0f9f1c70df94e511f15212e8a Mon Sep 17 00:00:00 2001 From: Mike Fiedler Date: Wed, 7 Aug 2024 12:44:37 -0400 Subject: [PATCH 2/4] Add installation guide to README for macos installation via `brew install oxker` --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index cefc768..5c33a86 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@

- [Download & install](#download--install) +- [Homebrew](#homebrew) - [Run](#run) - [Build step](#build-step) - [Tests](#tests) @@ -67,6 +68,14 @@ oxker can be installed from the [AUR](https://aur.archlinux.org/packages/oxker) paru -S oxker ``` +### Homebrew + +oxker can be installed on macOS using Homebrew: + +```shell +brew install oxker +``` + ### Pre-Built See the pre-built binaries From 799da7cc8ef35ef9a9e0a514c111bf4a1368671a Mon Sep 17 00:00:00 2001 From: Mike Fiedler Date: Wed, 7 Aug 2024 15:41:26 -0400 Subject: [PATCH 3/4] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 5c33a86..0502198 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,6 @@

- [Download & install](#download--install) -- [Homebrew](#homebrew) - [Run](#run) - [Build step](#build-step) - [Tests](#tests) From ee9454a26f5b323850a9767d54f8f62ac9277a71 Mon Sep 17 00:00:00 2001 From: Jack Wills <32690432+mrjackwills@users.noreply.github.com> Date: Wed, 7 Aug 2024 21:16:47 +0000 Subject: [PATCH 4/4] chore: create_release v0.5.7 --- create_release.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/create_release.sh b/create_release.sh index 04d0f9d..3db0632 100755 --- a/create_release.sh +++ b/create_release.sh @@ -1,7 +1,7 @@ #!/bin/bash -# rust create_release v0.5.6 -# 2024-07-27 +# rust create_release v0.5.7 +# 2024-08-02 STAR_LINE='****************************************' CWD=$(pwd) @@ -178,7 +178,7 @@ cargo_test() { } # Simulate publishing to crates.io -cargo_publish() { +cargo_publish_dry_run() { echo -e "${PURPLE}cargo publish --dry-run${RESET}" cargo publish --dry-run ask_continue @@ -266,7 +266,7 @@ release_flow() { cargo_test cross_build_all - cargo_publish + cargo_publish_dry_run cd "${CWD}" || error_close "Can't find ${CWD}" check_tag