summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2016-04-16 13:40:57 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2016-04-16 13:40:57 +0100
commit86450ed8a2fe93dba662ca146de625ad0a5801e0 (patch)
tree7fa5fb5c151a59e5f81b9f9208b5ded830aede96 /amiga
parent3a5b4571b419087f8adfeb1dfe6b0c3f32dd9985 (diff)
downloadnetsurf-86450ed8a2fe93dba662ca146de625ad0a5801e0.tar.gz
netsurf-86450ed8a2fe93dba662ca146de625ad0a5801e0.tar.bz2
Ensure the ARexx-reported version number doesn't jump around between CI and release builds
Update minor version for next release cycle
Diffstat (limited to 'amiga')
-rw-r--r--amiga/version.c5
1 files changed, 3 insertions, 2 deletions
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;