Skip to content
This repository was archived by the owner on Feb 6, 2025. It is now read-only.

Commit fe6b5ed

Browse files
committed
chore: fixes
1 parent cd25e9d commit fe6b5ed

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ endif()
6262
# - npm/package.json
6363
# - hermes-engine.podspec
6464
project(Hermes
65-
VERSION 0.12.0
65+
VERSION 0.12.1
6666
LANGUAGES C CXX)
6767

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To build a local debug version of the Hermes CLI tools the following steps shoul
2323
```shell
2424
mkdir hermes_workingdir
2525
cd hermes_workingdir
26-
git clone https://github.com/facebook/hermes.git
26+
git clone https://github.com/BuildHero/hermes.git
2727
cmake -S hermes -B build -G Ninja
2828
cmake --build ./build
2929
```

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// - CMakeLists.txt
1010
// - npm/package.json
1111
// - hermes-engine.podspec
12-
def release_version = "0.12.0"
12+
def release_version = "0.12.1"
1313

1414
buildscript {
1515
ext {

hermes-engine.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Pod::Spec.new do |spec|
1414
# - android/build.gradle
1515
# - npm/package.json
1616
# - CMakeLists.txt
17-
spec.version = "0.12.0"
17+
spec.version = "0.12.1"
1818
spec.summary = "Hermes is a small and lightweight JavaScript engine optimized for running React Native."
1919
spec.description = "Hermes is a JavaScript engine optimized for fast start-up of React Native apps. It features ahead-of-time static optimization and compact bytecode."
2020
spec.homepage = "https://hermesengine.dev"

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.12.0",
2+
"version": "0.12.1",
33
"scripts": {
44
"unpack-builds": "node unpack-builds.js",
55
"unpack-builds-dev": "node unpack-builds.js --dev",

0 commit comments

Comments
 (0)