Ensure the ARexx-reported version number doesn't jump around between CI and release builds

Update minor version for next release cycle
This commit is contained in:
Chris Young 2016-04-16 13:40:57 +01:00
parent 3a5b4571b4
commit 86450ed8a2

View File

@ -25,14 +25,15 @@
* they are higher than CI builds, and make this (slightly) less confusing. * they are higher than CI builds, and make this (slightly) less confusing.
*/ */
#define NETSURF_VERSION_MAJOR "3" #define NETSURF_VERSION_MAJOR "3"
#define NETSURF_VERSION_MINOR_EXTERNAL "6"
#if defined(CI_BUILD) #if defined(CI_BUILD)
#define NETSURF_VERSION_MINOR CI_BUILD #define NETSURF_VERSION_MINOR CI_BUILD
#else #else
#define NETSURF_VERSION_MINOR "6000" "5" #define NETSURF_VERSION_MINOR "6000" NETSURF_VERSION_MINOR_EXTERNAL
#endif #endif
static const __attribute__((used)) char *verstag = "\0$VER: NetSurf " NETSURF_VERSION_MAJOR "." NETSURF_VERSION_MINOR " (" WT_COMPILEDATE ")\0"; 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 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; const char * const wt_revid = WT_REVID;