From 0c8a90b6cd07fb827135d7911a44c828eceee33b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michael=20G=C3=B6hler?= Date: Sun, 21 Sep 2014 17:40:29 +0200 Subject: [PATCH] added revision to version number --- include/mdp.h | 5 +++-- mdp.c | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/include/mdp.h b/include/mdp.h index f57920b..8713623 100644 --- a/include/mdp.h +++ b/include/mdp.h @@ -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 --- 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 .\n"); printf("This is free software: you are free to change and redistribute it.\n"); -- 2.20.1