diff options
author | Michaƫl Zasso <targos@protonmail.com> | 2018-01-24 20:16:24 +0100 |
---|---|---|
committer | Myles Borins <mylesborins@google.com> | 2018-01-24 15:02:33 -0800 |
commit | 0398debe81d016574395375ef2451989cfb92009 (patch) | |
tree | 3268c46985902f000c394959b4bfd317a444b36d /src/node_version.h | |
parent | fe6bcce9afa1c42f31e6d48b005c52f9ee7d5550 (diff) | |
download | node-new-0398debe81d016574395375ef2451989cfb92009.tar.gz |
src: update NODE_MODULE_VERSION to 61
Major V8 updates are usually API/ABI incompatible with previous
versions. This commit adapts NODE_MODULE_VERSION for V8 6.4.
Refs: https://github.com/nodejs/CTC/blob/master/meetings/2016-09-28.md
PR-URL: https://github.com/nodejs/node/pull/17489
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
Diffstat (limited to 'src/node_version.h')
-rw-r--r-- | src/node_version.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/node_version.h b/src/node_version.h index b8f56fdeaf..7a6fcbf477 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -104,10 +104,11 @@ * V8 6.1: 58 * V8 6.2: 59 * V8 6.3: 60 + * V8 6.4: 61 * * More information can be found at https://nodejs.org/en/download/releases/ */ -#define NODE_MODULE_VERSION 60 +#define NODE_MODULE_VERSION 61 // the NAPI_VERSION provided by this version of the runtime #define NAPI_VERSION 2 |