# HG changeset patch # User Mike Becker # Date 1720719456 -7200 # Node ID 719e3c6d4c9bcc679c5266562b6efb697bab26f2 # Parent ccc41b180db77bf0582d29a772939b96487a1c15 release version 3.1 and fixes that every version was marked unstable in the version output diff -r ccc41b180db7 -r 719e3c6d4c9b src/c2html.h --- a/src/c2html.h Thu Jul 11 19:30:55 2024 +0200 +++ b/src/c2html.h Thu Jul 11 19:37:36 2024 +0200 @@ -39,7 +39,7 @@ #endif #define VERSION_MAJOR 3 -#define VERSION_MINOR 0 +#define VERSION_MINOR 1 #define VERSION_DEVELOP 0 /* set this to zero for release version */ /** diff -r ccc41b180db7 -r 719e3c6d4c9b src/frontend.c --- a/src/frontend.c Thu Jul 11 19:30:55 2024 +0200 +++ b/src/frontend.c Thu Jul 11 19:37:36 2024 +0200 @@ -109,7 +109,7 @@ return EXIT_SUCCESS; case 'v': case 'V': -#ifdef VERSION_DEVELOP +#if VERSION_DEVELOP > 0 printf("%d.%d (unstable)\n", VERSION_MAJOR, VERSION_MINOR); #else printf("%d.%d\n", VERSION_MAJOR, VERSION_MINOR);