From cf7201af7a96abc2f4709b3b41e87e5e3ecb1569 Mon Sep 17 00:00:00 2001 From: bitozoid Date: Mon, 3 Feb 2020 10:42:51 +0000 Subject: [PATCH 1/2] Limit dep order filter To fix #182. --- src/ui.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui.sh b/src/ui.sh index 6716c75..08c4a71 100644 --- a/src/ui.sh +++ b/src/ui.sh @@ -77,7 +77,7 @@ ui::width() { } ui::remove_dep_order() { - sed -E 's/^[^;]+; //' + sed -E 's/^: [^;]+; //' } ui::print_preview() { From bf7f145e938a7293059ee5b0472114e8b7b8e2d9 Mon Sep 17 00:00:00 2001 From: bitozoid Date: Tue, 4 Feb 2020 13:28:38 +0000 Subject: [PATCH 2/2] Bump version to 0.18.3. --- navi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/navi b/navi index ab5a346..bbeee3c 100755 --- a/navi +++ b/navi @@ -4,7 +4,7 @@ set -euo pipefail export NAVI_HOME="$(cd "$(dirname "$0")" && pwd)" source "${NAVI_HOME}/src/main.sh" -VERSION="0.18.2" +VERSION="0.18.3" NAVI_ENV="${NAVI_ENV:-prod}" opts::eval "$@"