From bebef4c43e654738d15d44176b695a1ce3661515 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ramos?= Date: Fri, 6 May 2022 08:33:07 -0700 Subject: [PATCH] Hermes: Use Hermes commit sha as part of pod version Summary: Customize the Hermes version exposed to CocoaPods with one that refers to the facebook/hermes commit sha from which Hermes was built. Changelog: [Internal] Reviewed By: cortinico Differential Revision: D36145140 fbshipit-source-id: 4ff7546d2335ea6642dd9b10f4b7a9aba260d550 --- sdks/hermes-engine.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdks/hermes-engine.podspec b/sdks/hermes-engine.podspec index 32ea54764bf..05b7912bfea 100644 --- a/sdks/hermes-engine.podspec +++ b/sdks/hermes-engine.podspec @@ -18,7 +18,7 @@ end Pod::Spec.new do |spec| spec.name = "hermes-engine" - spec.version = '1000.0.0' + spec.version = "1000.0.0-#{hermes_tag_sha.slice(0,6)}" spec.summary = "Hermes is a small and lightweight JavaScript engine optimized for running React Native." 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." spec.homepage = "https://hermesengine.dev"