summaryrefslogtreecommitdiff
path: root/src/node_version.h
diff options
context:
space:
mode:
authorRod Vagg <rod@vagg.org>2015-05-24 08:43:41 +1000
committerRod Vagg <rod@vagg.org>2015-05-24 12:08:57 +1000
commit4d8f4d5cb3514737f78d50ed532de23a718cf28e (patch)
tree1af0762d2faaed05f4c0028766d99398264343f4 /src/node_version.h
parentd144e96fbf94570a6faea8f054c8b99c8adf6b1b (diff)
downloadandroid-node-v8-4d8f4d5cb3514737f78d50ed532de23a718cf28e.tar.gz
android-node-v8-4d8f4d5cb3514737f78d50ed532de23a718cf28e.tar.bz2
android-node-v8-4d8f4d5cb3514737f78d50ed532de23a718cf28e.zip
2015-05-24 io.js v2.1.0 Release
PR-URL: https://github.com/nodejs/io.js/pull/1777 Notable Changes: * crypto: Diffie-Hellman key exchange (DHE) parameters ('dhparams') must now be 1024 bits or longer or an error will be thrown. A warning will also be printed to the console if you supply less than 2048 bits. See https://weakdh.org/ for further context on this security concern. (Shigeki Ohtsu) #1739. * node: A new --trace-sync-io command line flag will print a warning and a stack trace whenever a synchronous API is used. This can be used to track down synchronous calls that may be slowing down an application. (Trevor Norris) #1707. * node: To allow for chaining of methods, the setTimeout(), setKeepAlive(), setNoDelay(), ref() and unref() methods used in 'net', 'dgram', 'http', 'https' and 'tls' now return the current instance instead of undefined (Roman Reiss & Evan Lucas) #1699 #1768 #1779. * npm: Upgraded to v2.10.1, release notes can be found in https://github.com/npm/npm/releases/tag/v2.10.1 and https://github.com/npm/npm/releases/tag/v2.10.0. * util: A significant speed-up (in the order of 35%) for the common-case of a single string argument to util.format(), used by console.log() (Сковорода Никита Андреевич) #1749.
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 d16cc340cc..6779434752 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 0
-#define NODE_PATCH_VERSION 3
+#define NODE_MINOR_VERSION 1
+#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)