Bump version for non-VCS builds (#1243)

This commit is contained in:
Loïc 2020-04-27 16:50:03 +02:00 committed by GitHub
parent d876f04baf
commit d42c304a55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -42,8 +42,8 @@
#define SOURCEMOD_V_REV 0
#define SOURCEMOD_V_CSET "0"
#define SOURCEMOD_V_MAJOR 1 /**< SourceMod Major version */
#define SOURCEMOD_V_MINOR 10 /**< SourceMod Minor version */
#define SOURCEMOD_V_MINOR 11 /**< SourceMod Minor version */
#define SOURCEMOD_V_RELEASE 0 /**< SourceMod Release version */
#define SOURCEMOD_VERSION "1.10.0-manual" /**< SourceMod version string (major.minor.release-tag) */
#define SOURCEMOD_VERSION "1.11.0-manual" /**< SourceMod version string (major.minor.release-tag) */
#endif

View File

@ -52,13 +52,13 @@
#define SM_BUILD_LOCAL_REV "0"
#define SM_BUILD_CSET "0"
#define SM_BUILD_MAJOR "1"
#define SM_BUILD_MINOR "10"
#define SM_BUILD_MINOR "11"
#define SM_BUILD_RELEASE "0"
#define SM_BUILD_UNIQUEID SM_BUILD_LOCAL_REV ":" SM_BUILD_CSET
#define SM_VERSION_STRING SM_BUILD_MAJOR "." SM_BUILD_MINOR "." SM_BUILD_RELEASE "-" SM_BUILD_TAG
#define SM_VERSION_FILE 1,10,0,0
#define SM_VERSION_FILE 1,11,0,0
#endif
#define SM_BUILD_TIMESTAMP __DATE__ " " __TIME__