From c29e185d2aa524a2406d5074cc27d0c0e345e7a8 Mon Sep 17 00:00:00 2001 From: peace-maker Date: Tue, 5 Jul 2022 15:13:52 +0200 Subject: [PATCH] Bump version to 1.12 for manual builds (#1795) --- plugins/include/version.inc | 4 ++-- public/sourcemod_version.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/include/version.inc b/plugins/include/version.inc index 4a69ae00..baeb4ac2 100644 --- a/plugins/include/version.inc +++ b/plugins/include/version.inc @@ -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 11 /**< SourceMod Minor version */ + #define SOURCEMOD_V_MINOR 12 /**< SourceMod Minor version */ #define SOURCEMOD_V_RELEASE 0 /**< SourceMod Release version */ - #define SOURCEMOD_VERSION "1.11.0-manual" /**< SourceMod version string (major.minor.release-tag) */ + #define SOURCEMOD_VERSION "1.12.0-manual" /**< SourceMod version string (major.minor.release-tag) */ #endif diff --git a/public/sourcemod_version.h b/public/sourcemod_version.h index 63185079..294cf644 100644 --- a/public/sourcemod_version.h +++ b/public/sourcemod_version.h @@ -52,13 +52,13 @@ #define SM_BUILD_LOCAL_REV "0" #define SM_BUILD_CSET "0" #define SM_BUILD_MAJOR "1" -#define SM_BUILD_MINOR "11" +#define SM_BUILD_MINOR "12" #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,11,0,0 +#define SM_VERSION_FILE 1,12,0,0 #endif #define SM_BUILD_TIMESTAMP __DATE__ " " __TIME__