From 5c086d1c529ba8f1c5cff9bd3179b16e9c812de3 Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Fri, 16 May 2025 13:35:17 +0200 Subject: [PATCH] Add -a option to help text --- src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index fa8bb67..d9c2a46 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -11,7 +11,8 @@ using namespace std; void print_help() { - cout << "usage: gitlabvers [-h|--version]\n"; + cout << "usage: gitlabvers [-a|-h|--version]\n"; + cout << " -a, --all show all versions from changelog\n"; cout << " -h, --help show this help text and exit\n"; cout << " --version show version number and exit\n"; }