Skip to content

Commit ec7a067

Browse files
committed
Update release/1.11 to version 1.11.0, update GUID, and set PRERELEASE
1 parent ebe9f3f commit ec7a067

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

Build/NuGet/.pack-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.10.2
1+
1.11.0

lib/Common/ChakraCoreVersion.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
// ChakraCore version number definitions (used in ChakraCore binary metadata)
1818
#define CHAKRA_CORE_MAJOR_VERSION 1
19-
#define CHAKRA_CORE_MINOR_VERSION 10
20-
#define CHAKRA_CORE_PATCH_VERSION 2
19+
#define CHAKRA_CORE_MINOR_VERSION 11
20+
#define CHAKRA_CORE_PATCH_VERSION 0
2121
#define CHAKRA_CORE_VERSION_RELEASE_QFE 0 // Redundant with PATCH_VERSION. Keep this value set to 0.
2222

2323
// -------------
@@ -55,7 +55,7 @@
5555

5656
// ChakraCore RELEASE and PRERELEASE flags
5757
#define CHAKRA_CORE_VERSION_RELEASE 1
58-
#define CHAKRA_CORE_VERSION_PRERELEASE 0
58+
#define CHAKRA_CORE_VERSION_PRERELEASE 1
5959

6060
// Chakra RELEASE flag
6161
// Mostly redundant with CHAKRA_CORE_VERSION_RELEASE,

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-
// {18949169-1B93-4123-B34A-F42F1C1EAF9A}
8+
// {BAE0C525-F1E9-4DCF-AF50-C70ACB3E4A7F}
89
const GUID byteCodeCacheReleaseFileVersion =
9-
{ 0x18949169, 0x1B93, 0x4123, { 0xB3, 0x4A, 0xF4, 0x2F, 0x1C, 0x1E, 0xAF, 0x9A } };
10+
{ 0xBAE0C525, 0xF1E9, 0x4DCF, { 0xAF, 0x50, 0xC7, 0x0A, 0xCB, 0x3E, 0x4A, 0x7F } };

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)