Skip to content

Commit

Permalink
Bump release to v0.5.2-rc1 for Proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
Huxpro committed Aug 3, 2020
1 parent 17e2f8e commit c9d1d83
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ endif()
# - npm/package.json
# - hermes.podspec
project(Hermes
VERSION 0.5.1
VERSION 0.5.2
LANGUAGES C CXX)
# Optional suffix like "-rc3"
set(VERSION_SUFFIX "")
set(VERSION_SUFFIX "-rc1")

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules/")

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

// This must be consistent with the release_version in npm/package.json
// and the HERMES_RELEASE_VERSION in CMakeLists.txt
def release_version = "0.5.1"
def release_version = "0.5.2-rc1"

buildscript {
ext {
Expand Down
2 changes: 1 addition & 1 deletion lib/VM/Runtime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Runtime::Runtime(
runtimeConfig.getCrashMgr(),
std::move(provider)),
jitContext_(runtimeConfig.getEnableJIT(), (1 << 20) * 16, (1 << 20) * 32),
hasES6Proxy_(runtimeConfig.getES6Proxy()),
hasES6Proxy_(true),
hasES6Symbol_(runtimeConfig.getES6Symbol()),
shouldRandomizeMemoryLayout_(runtimeConfig.getRandomizeMemoryLayout()),
bytecodeWarmupPercent_(runtimeConfig.getBytecodeWarmupPercent()),
Expand Down
2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.5.1",
"version": "0.5.2-rc1",
"scripts": {
"unpack-builds": "node unpack-builds.js",
"unpack-builds-dev": "node unpack-builds.js --dev",
Expand Down

0 comments on commit c9d1d83

Please sign in to comment.