diff --git a/configure.ac b/configure.ac index 75f2d8e..6b71031 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.59]) -AC_INIT([clsync],[0.4],[Dmitry Yu Okunev ],,[https://github.com/xaionaro/clsync]) +AC_INIT([clsync],[0.4.1],[Dmitry Yu Okunev ],,[https://github.com/xaionaro/clsync]) AC_CONFIG_SRCDIR([sync.c]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([1.11 foreign -Wall -Wno-portability]) diff --git a/main.c b/main.c index e5d5d3e..db8629f 100644 --- a/main.c +++ b/main.c @@ -483,7 +483,7 @@ pid_t fork_helper() { } int version() { - info(PROGRAM" v%i.%i"REVISION"\n\t"AUTHOR"\n\nCompiled with options" + info(PROGRAM" v%i.%i.%i"REVISION"\n\t"AUTHOR"\n\nCompiled with options" #ifdef _DEBUG_SUPPORT " -D_DEBUG_SUPPORT" #endif @@ -538,7 +538,7 @@ int version() { #ifdef HL_LOCKS " -DHL_LOCKS" #endif - , VERSION_MAJ, VERSION_MIN); + , VERSION_MAJ, VERSION_MID, VERSION_MIN); exit(0); } diff --git a/program.h b/program.h index c2cd2b9..4fb9035 100644 --- a/program.h +++ b/program.h @@ -18,6 +18,7 @@ */ #define PROGRAM "clsync" -#define VERSION_MAJ 0 -#define VERSION_MIN 4 +#define VERSION_MAJ 0 +#define VERSION_MID 4 +#define VERSION_MIN 1 #define AUTHOR "Dmitry Yu Okunev 0x8E30679C"