Skip to content

Commit 6f97052

Browse files
committed
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: #21079 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yang Guo <yangguo@chromium.org>
1 parent f6efaa5 commit 6f97052

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/node_version.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,11 @@
108108
* V8 6.5: 62
109109
* V8 6.6: 63
110110
* V8 6.7: 64
111+
* V8 6.8: 65
111112
*
112113
* More information can be found at https://nodejs.org/en/download/releases/
113114
*/
114-
#define NODE_MODULE_VERSION 64
115+
#define NODE_MODULE_VERSION 65
115116

116117
// the NAPI_VERSION provided by this version of the runtime
117118
#define NAPI_VERSION 3

0 commit comments

Comments
 (0)