mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-20 03:02:36 +03:00
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:
parent
3a5b4571b4
commit
86450ed8a2
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user