diff --git a/Engine/Build/Build.version b/Engine/Build/Build.version index dca9b913852d..27e7b641a7f3 100644 --- a/Engine/Build/Build.version +++ b/Engine/Build/Build.version @@ -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" } diff --git a/Engine/Source/Runtime/Launch/Resources/Version.h b/Engine/Source/Runtime/Launch/Resources/Version.h index da1304f49708..9ccad1b356be 100644 --- a/Engine/Source/Runtime/Launch/Resources/Version.h +++ b/Engine/Source/Runtime/Launch/Resources/Version.h @@ -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