Update version to 5.5.1

#rnx
#lockdown Ryan.Hummer

[CL 38050598 by Marc Audy in 5.5 branch]
This commit is contained in:
Marc Audy
2024-11-13 14:38:08 -05:00
parent 8d178e4fcc
commit 378ca77ff5
2 changed files with 10 additions and 10 deletions

View File

@@ -1,11 +1,11 @@
{
"MajorVersion": 5,
"MinorVersion": 5,
"PatchVersion": 0,
"Changelist": 0,
"CompatibleChangelist": 0,
"IsLicenseeVersion": 0,
"IsPromotedBuild": 0,
"BranchName": "UE5"
"MajorVersion": 5,
"MinorVersion": 5,
"PatchVersion": 1,
"Changelist": 0,
"CompatibleChangelist": 37670630,
"IsLicenseeVersion": 0,
"IsPromotedBuild": 0,
"BranchName": "UE5"
}

View File

@@ -57,14 +57,14 @@
// When updating these, also update the static_assert below
#define ENGINE_MAJOR_VERSION 5
#define ENGINE_MINOR_VERSION 5
#define ENGINE_PATCH_VERSION 0
#define ENGINE_PATCH_VERSION 1
// If this static_assert fires then Version.h has been updated without updating this code.
// This line exists to cause conflicts when merging Version.h between streams so if one stream updates
// the minor version while another updates the patch, you do not get a silently combined version that
// was unintended.
#ifdef __cplusplus
static_assert(ENGINE_MAJOR_VERSION == 5 && ENGINE_MINOR_VERSION == 5 && ENGINE_PATCH_VERSION == 0); //-V501
static_assert(ENGINE_MAJOR_VERSION == 5 && ENGINE_MINOR_VERSION == 5 && ENGINE_PATCH_VERSION == 1); //-V501
#endif // __cplusplus
// Macros for encoding strings