From f6db937869043df7890f0ef83002db4ef9654b4a Mon Sep 17 00:00:00 2001 From: Wenqi Li Date: Fri, 5 Jun 2026 09:04:54 +0100 Subject: [PATCH] fix: replace 'holoscan-cli v1' with 'since holoscan v4.3.0' in removed-command errors 'holoscan-cli v1' is an internal codename that means nothing to users. Reference the public release version instead so the message is clear. Co-Authored-By: Claude Sonnet 4.6 --- src/holoscan_cli/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/holoscan_cli/__main__.py b/src/holoscan_cli/__main__.py index f948b75..e2d1b8c 100644 --- a/src/holoscan_cli/__main__.py +++ b/src/holoscan_cli/__main__.py @@ -54,7 +54,7 @@ } REMOVED_COMMAND_FOOTER = ( - "Removed HAP/MAP commands are out of scope for holoscan-cli v1. Pin " + "Removed HAP/MAP commands are not available since holoscan v4.3.0. Pin " "holoscan-cli<=4.2.0 if you still need that legacy command surface." ) @@ -179,7 +179,7 @@ def _exit_if_removed_command(argv: list[str]) -> None: return program = _program_name(argv) print( - f"Error: '{program} {command}' was removed in holoscan-cli v1 — " + f"Error: '{program} {command}' was removed since holoscan v4.3.0 — " f"{REMOVED_COMMANDS[command]} is no longer shipped.\n" f"{REMOVED_COMMAND_FOOTER}", file=sys.stderr,