Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2017-12-05 18:41:55 +0300
committerMichaël Zasso <targos@protonmail.com>2017-12-06 14:52:07 +0300
commita7c5fe9ba63f9d4fd9451c55a2dcd8f1728c2c33 (patch)
treec3b636775515ade752ca59b7b8d6e2cddd6a2a10 /src
parent6e7028ea7613c93890053e8b2a99c4f8f54527f2 (diff)
src: update NODE_MODULE_VERSION to 60
Major V8 updates are usually API/ABI incompatible with previous versions. This commit adapts NODE_MODULE_VERSION for V8 6.3. Refs: https://github.com/nodejs/CTC/blob/master/meetings/2016-09-28.md PR-URL: https://github.com/nodejs/node/pull/16271 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Myles Borins <myles.borins@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/node_version.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/node_version.h b/src/node_version.h
index 608d0a33b10..a28d0f335be 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -103,9 +103,10 @@
* V8 6.0: 57
* V8 6.1: 58
* V8 6.2: 59
+ * V8 6.3: 60
*
* More information can be found at https://nodejs.org/en/download/releases/
*/
-#define NODE_MODULE_VERSION 59
+#define NODE_MODULE_VERSION 60
#endif // SRC_NODE_VERSION_H_