From 0b8f65788e65f9d80c6fd29235c32fa525840852 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Mon, 11 Mar 2019 19:40:13 +0100 Subject: [PATCH] src: update NODE_MODULE_VERSION to 70 Major V8 updates are usually API/ABI incompatible with previous versions. This commit adapts NODE_MODULE_VERSION for V8 7.3. Refs: https://github.com/nodejs/CTC/blob/master/meetings/2016-09-28.md --- src/node_version.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/node_version.h b/src/node_version.h index f64aa2aad77334..58145bb93eb133 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -112,10 +112,11 @@ * V8 6.9: 66 * V8 7.0: 67 * V8 7.1: 68 + * V8 7.3: 70 * * More information can be found at https://nodejs.org/en/download/releases/ */ -#define NODE_MODULE_VERSION 68 +#define NODE_MODULE_VERSION 70 // the NAPI_VERSION provided by this version of the runtime #define NAPI_VERSION 4