From 6f9705275bf9fe5ba848ba5254a88ca3f275f882 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Wed, 25 Jul 2018 19:30:13 +0200 Subject: [PATCH] src: update NODE_MODULE_VERSION to 65 Major V8 updates are usually API/ABI incompatible with previous versions. This commit adapts NODE_MODULE_VERSION for V8 6.8. Refs: https://github.com/nodejs/CTC/blob/master/meetings/2016-09-28.md PR-URL: https://github.com/nodejs/node/pull/21079 Reviewed-By: James M Snell Reviewed-By: Matteo Collina Reviewed-By: Colin Ihrig Reviewed-By: Yang Guo --- 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 eeb77b4a180b55..3c4eb70771b64c 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -108,10 +108,11 @@ * V8 6.5: 62 * V8 6.6: 63 * V8 6.7: 64 + * V8 6.8: 65 * * More information can be found at https://nodejs.org/en/download/releases/ */ -#define NODE_MODULE_VERSION 64 +#define NODE_MODULE_VERSION 65 // the NAPI_VERSION provided by this version of the runtime #define NAPI_VERSION 3