From 514e70098d59642580550d4271c60df4edd68ef4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Tue, 28 Aug 2018 22:35:03 +0200 Subject: [PATCH] deps: sync V8 embedder string with master branch To avoid conflicts while cherry-picking future V8 backports, increment the embedder string by one so it has the same value as in the master branch. The value was off by one because of an ABI-breaking backport that could not be taken in v10.x. Refs: https://github.com/nodejs/node/pull/22106 --- common.gypi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.gypi b/common.gypi index 35d09b75011b7c..0316afe7048df0 100644 --- a/common.gypi +++ b/common.gypi @@ -29,7 +29,7 @@ # Reset this number to 0 on major V8 upgrades. # Increment by one for each non-official patch applied to deps/v8. - 'v8_embedder_string': '-node.18', + 'v8_embedder_string': '-node.19', # Enable disassembler for `--print-code` v8 options 'v8_enable_disassembler': 1,