summaryrefslogtreecommitdiff
path: root/src/node_version.h
diff options
context:
space:
mode:
authorRod Vagg <rod@vagg.org>2015-05-31 15:23:39 +1000
committerRod Vagg <rod@vagg.org>2015-05-31 16:00:27 +1000
commit0c57de5b37e2427064ae899832b48e4655ec8fd9 (patch)
treefade54902cbd83cbdae41c746572258ba15e9456 /src/node_version.h
parent8059393934c2ed0e3e7a179f619b803291804344 (diff)
downloadandroid-node-v8-0c57de5b37e2427064ae899832b48e4655ec8fd9.tar.gz
android-node-v8-0c57de5b37e2427064ae899832b48e4655ec8fd9.tar.bz2
android-node-v8-0c57de5b37e2427064ae899832b48e4655ec8fd9.zip
2015-05-31 io.js v2.2.0 Release
PR-URL: https://github.com/nodejs/io.js/pull/1808 Notable Changes: * node: Speed-up require() by replacing usage of fs.statSync() and fs.readFileSync() with internal variants that are faster for this use-case and do not create as many objects for the garbage collector to clean up. The primary two benefits are: significant increase in application start-up time on typical applications and better start-up time for the debugger by eliminating almost all of the thousands of exception events. (Ben Noordhuis) #1801. * node: Resolution of pre-load modules (-r or --require) now follows the standard require() rules rather than just resolving paths, so you can now pre-load modules in node_modules. (Ali Ijaz Sheikh) #1812. * npm: Upgraded npm to v2.11.0. New hooks for preversion, version, and postversion lifecycle events, some SPDX-related license changes and license file inclusions. See the release notes for full details.
Diffstat (limited to 'src/node_version.h')
-rw-r--r--src/node_version.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/node_version.h b/src/node_version.h
index c73a45e1b9..d83a593dd3 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -2,10 +2,10 @@
#define SRC_NODE_VERSION_H_
#define NODE_MAJOR_VERSION 2
-#define NODE_MINOR_VERSION 1
-#define NODE_PATCH_VERSION 1
+#define NODE_MINOR_VERSION 2
+#define NODE_PATCH_VERSION 0
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)