release version 3.1

Thu, 11 Jul 2024 19:37:36 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 11 Jul 2024 19:37:36 +0200
changeset 78
719e3c6d4c9b
parent 77
ccc41b180db7
child 79
07a3743ce6ac

release version 3.1

and fixes that every version was marked
unstable in the version output

src/c2html.h file | annotate | diff | comparison | revisions
src/frontend.c file | annotate | diff | comparison | revisions
--- 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 */
 
 /**
--- 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);

mercurial