From 91ab09fe2a5739e8e6b4133ffa23d8c5afff37d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Wed, 11 Jan 2017 09:50:19 +0100 Subject: [PATCH] src: update NODE_MODULE_VERSION to 52 V8 5.5 is not API/ABI compatible with 5.4. This commit increments NODE_MODULE_VERSION by one. Refs: https://github.com/nodejs/CTC/blob/master/meetings/2016-09-28.md PR-URL: https://github.com/nodejs/node/pull/9618 Reviewed-By: Ali Ijaz Sheikh Reviewed-By: Ben Noordhuis --- 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 daefafa8eb26d5..b7760cf04ba46d 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -52,6 +52,6 @@ * an API is broken in the C++ side, including in v8 or * other dependencies. */ -#define NODE_MODULE_VERSION 51 /* Node.js v7.0.0 */ +#define NODE_MODULE_VERSION 52 /* Node.js v8.0.0 */ #endif // SRC_NODE_VERSION_H_