diff options
author | Rod Vagg <rod@vagg.org> | 2013-04-08 15:13:23 +1000 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2013-04-08 16:48:18 +0200 |
commit | ccabd4a6fa8a6eb79d29bc3bbe9fe2b6531c2d8e (patch) | |
tree | 454177822f56be06ebb67a6c66bc9536e79ac525 /src/node.h | |
parent | 21f3c5c3670861436392f30da2033cccbc137309 (diff) | |
download | node-new-ccabd4a6fa8a6eb79d29bc3bbe9fe2b6531c2d8e.tar.gz |
process: expose NODE_MODULE_VERSION in process.versions
Diffstat (limited to 'src/node.h')
-rw-r--r-- | src/node.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node.h b/src/node.h index 5769a7b9ce..574a93ac7d 100644 --- a/src/node.h +++ b/src/node.h @@ -207,7 +207,7 @@ node_module_struct* get_builtin_module(const char *name); * an API is broken in the C++ side, including in v8 or * other dependencies. */ -#define NODE_MODULE_VERSION 0x000B /* v0.11 */ +#define NODE_MODULE_VERSION 11 #define NODE_STANDARD_MODULE_STUFF \ NODE_MODULE_VERSION, \ |