From 6937e03fc47cbb760ccb5191a6caf88b975854c8 Mon Sep 17 00:00:00 2001 From: "Node.js Jenkins CI" Date: Sun, 25 Feb 2018 06:56:09 +0000 Subject: [PATCH] src: update NODE_MODULE_VERSION to 63 Major V8 updates are usually API/ABI incompatible with previous versions. This commit adapts NODE_MODULE_VERSION for V8 6.6. 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 7a6fcbf4778..5cc932a4252 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -105,10 +105,11 @@ * V8 6.2: 59 * V8 6.3: 60 * V8 6.4: 61 + * V8 6.6: 63 * * More information can be found at https://nodejs.org/en/download/releases/ */ -#define NODE_MODULE_VERSION 61 +#define NODE_MODULE_VERSION 63 // the NAPI_VERSION provided by this version of the runtime #define NAPI_VERSION 2