Browse Source

node: bump NODE_MODULE_VERSION

Bump NODE_MODULE_VERSION so old modules won't load without recompiling when
the next major release (v0.10) comes out.

This is necessary because the ABI changes between major releases.
v0.9.1-release
Ben Noordhuis 12 years ago
parent
commit
c3d4c3560e
  1. 4
      src/node.h

4
src/node.h

@ -212,9 +212,9 @@ node_module_struct* get_builtin_module(const char *name);
* When this version number is changed, node.js will refuse * When this version number is changed, node.js will refuse
* to load older modules. This should be done whenever * to load older modules. This should be done whenever
* an API is broken in the C++ side, including in v8 or * an API is broken in the C++ side, including in v8 or
* other dependencies * other dependencies.
*/ */
#define NODE_MODULE_VERSION (1) #define NODE_MODULE_VERSION 0x000A /* v0.10 */
#define NODE_STANDARD_MODULE_STUFF \ #define NODE_STANDARD_MODULE_STUFF \
NODE_MODULE_VERSION, \ NODE_MODULE_VERSION, \

Loading…
Cancel
Save