From 86450ed8a2fe93dba662ca146de625ad0a5801e0 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 16 Apr 2016 13:40:57 +0100 Subject: Ensure the ARexx-reported version number doesn't jump around between CI and release builds Update minor version for next release cycle --- amiga/version.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'amiga') diff --git a/amiga/version.c b/amiga/version.c index 3b6b86b55..bc31d0c96 100644 --- a/amiga/version.c +++ b/amiga/version.c @@ -25,14 +25,15 @@ * they are higher than CI builds, and make this (slightly) less confusing. */ #define NETSURF_VERSION_MAJOR "3" +#define NETSURF_VERSION_MINOR_EXTERNAL "6" #if defined(CI_BUILD) #define NETSURF_VERSION_MINOR CI_BUILD #else -#define NETSURF_VERSION_MINOR "6000" "5" +#define NETSURF_VERSION_MINOR "6000" NETSURF_VERSION_MINOR_EXTERNAL #endif static const __attribute__((used)) char *verstag = "\0$VER: NetSurf " NETSURF_VERSION_MAJOR "." NETSURF_VERSION_MINOR " (" WT_COMPILEDATE ")\0"; const char * const verdate = WT_COMPILEDATE; -const char * const verarexx = NETSURF_VERSION_MAJOR "." NETSURF_VERSION_MINOR; +const char * const verarexx = NETSURF_VERSION_MAJOR "." NETSURF_VERSION_MINOR_EXTERNAL; const char * const wt_revid = WT_REVID; -- cgit v1.2.3