diff options
author | Michaël Zasso <targos@protonmail.com> | 2018-03-07 08:54:54 +0100 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2018-03-07 16:48:52 +0100 |
commit | a9755d493ea445b69dd022235bfec1c42134aec5 (patch) | |
tree | 5f45f189834ec98fcc8ffbedd4ede4f0e44684b0 /src/node_version.h | |
parent | 549b280b87f31944cdb8aa1ab05f64dbeaf58aaa (diff) | |
download | node-new-a9755d493ea445b69dd022235bfec1c42134aec5.tar.gz |
src: update NODE_MODULE_VERSION to 62
Major V8 updates are usually API/ABI incompatible with previous
versions. This commit adapts NODE_MODULE_VERSION for V8 6.5.
Refs: https://github.com/nodejs/CTC/blob/master/meetings/2016-09-28.md
PR-URL: https://github.com/nodejs/node/pull/18453
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Yang Guo <yangguo@chromium.org>
Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.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 7a6fcbf477..220ea88ba9 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -105,10 +105,11 @@ * V8 6.2: 59 * V8 6.3: 60 * V8 6.4: 61 + * V8 6.5: 62 * * More information can be found at https://nodejs.org/en/download/releases/ */ -#define NODE_MODULE_VERSION 61 +#define NODE_MODULE_VERSION 62 // the NAPI_VERSION provided by this version of the runtime #define NAPI_VERSION 2 |