From efeba2fc51c5973949c53816972cb09393073890 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 PR-URL: https://github.com/nodejs/node/pull/22573 Reviewed-By: Anna Henningsen Reviewed-By: Refael Ackermann --- common.gypi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.gypi b/common.gypi index db9401ffa1a77a..326563728f0d31 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.16', + 'v8_embedder_string': '-node.17', # Enable disassembler for `--print-code` v8 options 'v8_enable_disassembler': 1,