Skip to content

Commit a600244

Browse files
committed
[1.11>master] [MERGE #5634 @dilijev] Update release/1.11 to version 1.11.0
Merge pull request #5634 from dilijev:r111-v111
2 parents 59407fd + 25470e4 commit a600244

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

lib/Runtime/ByteCode/ByteCodeCacheReleaseFileVersion.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
44
//-------------------------------------------------------------------------------------------------------
55
// NOTE: If there is a merge conflict the correct fix is to make a new GUID.
6+
// This file was generated with tools\update_bytecode_version.ps1
67

7-
// {DD4E773A-2839-44A0-8B4E-9283A700135A}
8+
// {6CC5964E-CBF2-4053-99DA-987794182D7E}
89
const GUID byteCodeCacheReleaseFileVersion =
9-
{ 0xDD4E773A, 0x2839, 0x44A0, { 0x8B, 0x4E, 0x92, 0x83, 0xA7, 0x00, 0x13, 0x5A } };
10+
{ 0x6CC5964E, 0xCBF2, 0x4053, { 0x99, 0xDA, 0x98, 0x77, 0x94, 0x18, 0x2D, 0x7E } };

tools/update_bytecode_version.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ $copyright=@"
2020
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
2121
//-------------------------------------------------------------------------------------------------------
2222
// NOTE: If there is a merge conflict the correct fix is to make a new GUID.
23-
// This file was generated with core\tools\update_bytecode_version.ps1
23+
// This file was generated with tools\update_bytecode_version.ps1
2424
2525
"@
2626

27-
$version=[Guid]::NewGuid().ToString()
27+
$version=[Guid]::NewGuid().ToString().ToUpper()
2828

2929
Write-Header $copyright
30-
Write-Header "// $version"
30+
Write-Header "// {$version}"
3131
Write-Header "const GUID byteCodeCacheReleaseFileVersion ="
3232

3333
$version -match "^(\w{8})-(\w{4})-(\w{4})-(\w{4}-\w{12})$" | Out-Null

0 commit comments

Comments
 (0)