added revision to version number
authorMichael Göhler <somebody.here@gmx.de>
Sun, 21 Sep 2014 15:40:29 +0000 (17:40 +0200)
committerMichael Göhler <somebody.here@gmx.de>
Sun, 21 Sep 2014 15:40:29 +0000 (17:40 +0200)
include/mdp.h
mdp.c

index f57920b..8713623 100644 (file)
@@ -23,7 +23,8 @@
 #include "parser.h"
 #include "viewer.h"
 
-#define MAJOR_VERSION 0
-#define MINOR_VERSION 90
+#define MDP_VER_MAJOR 0
+#define MDP_VER_MINOR 91
+#define MDP_VER_REVISION 1
 
 #endif // !defined( MDP_H )
diff --git a/mdp.c b/mdp.c
index 3d38e3f..4fe4a63 100644 (file)
--- a/mdp.c
+++ b/mdp.c
@@ -39,7 +39,7 @@ void usage() {
 }
 
 void version() {
-    printf("mdp %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
+    printf("mdp %d.%d.%d\n", MDP_VER_MAJOR, MDP_VER_MINOR, MDP_VER_REVISION);
     printf("Copyright (C) 2014 Michael Goehler\n");
     printf("License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.\n");
     printf("This is free software: you are free to change and redistribute it.\n");