From 5ded8ebddfff8c3db669324db59256de2eaf52ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Fri, 12 May 2017 14:06:08 +0200 Subject: [PATCH] src: update NODE_MODULE_VERSION to 57 Node.js 8.0.0 is API/ABI forward-compatible with V8 6.0. The current module version is 55 and corresponds to V8 5.8. This increments the number by two to prevent incompatibility with modules compiled from Node master. --- src/node_version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_version.h b/src/node_version.h index ff194b21815d01..fea1406b02ba78 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -73,6 +73,6 @@ * an API is broken in the C++ side, including in v8 or * other dependencies. */ -#define NODE_MODULE_VERSION 55 /* Node.js v8.0.0 */ +#define NODE_MODULE_VERSION 57 /* Node.js v8.0.0 */ #endif // SRC_NODE_VERSION_H_