diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/node.js | 3 | ||||
-rw-r--r-- | src/node_version.h | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/node.js b/src/node.js index 50460383f..02aee1708 100644 --- a/src/node.js +++ b/src/node.js @@ -24,6 +24,9 @@ // This file is invoked by node::Load in src/node.cc, and responsible for // bootstrapping the node.js core. Special caution is given to the performance // of the startup process, so many dependencies are invoked lazily. + +'use strict'; + (function(process) { this.global = this; diff --git a/src/node_version.h b/src/node_version.h index cc9c08f6d..9497e111d 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -23,8 +23,8 @@ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 0 -#define NODE_MINOR_VERSION 12 -#define NODE_PATCH_VERSION 1 +#define NODE_MINOR_VERSION 13 +#define NODE_PATCH_VERSION 0 #define NODE_VERSION_IS_RELEASE 0 |