From d3aa9eeb1d5048b4750211e8065f391cac23957e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Mon, 15 Jan 2018 10:17:35 +0100 Subject: [PATCH] src: update NODE_MODULE_VERSION to 59 Major V8 updates are usually API/ABI incompatible with previous versions. This commit adapts NODE_MODULE_VERSION for V8 6.2. Refs: https://github.com/nodejs/CTC/blob/master/meetings/2016-09-28.md PR-URL: https://github.com/nodejs/node/pull/16413 --- 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 efc3c44410fc4b..1c6563af8fe8d2 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -102,9 +102,10 @@ * V8 5.9: 56 * V8 6.0: 57 * V8 6.1: 58 + * V8 6.2: 59 * * More information can be found at https://nodejs.org/en/download/releases/ */ -#define NODE_MODULE_VERSION 57 +#define NODE_MODULE_VERSION 59 #endif // SRC_NODE_VERSION_H_