Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Lucas <evanlucas@me.com>2017-01-03 09:31:41 +0300
committerEvan Lucas <evanlucas@me.com>2017-01-04 20:15:09 +0300
commit4760abcdd95070e06257b5408c2f72dcc787cfa9 (patch)
treeee80e05aebd1fcc41cc55b40655286173bd958e2 /src/node_version.h
parent022c743693a1af22c90e4a72a4c2e08dd0852f22 (diff)
2017-01-04, Version 7.4.0 (Current)v7.4.0
Notable changes: * buffer: - Improve performance of Buffer allocation by ~11% (Brian White) https://github.com/nodejs/node/pull/10443 - Improve performance of Buffer.from() by ~50% (Brian White) https://github.com/nodejs/node/pull/10443 * events: Improve performance of EventEmitter.once() by ~27% (Brian White) https://github.com/nodejs/node/pull/10445 * fs: Allow passing Uint8Array to fs methods where Buffers are supported. (Anna Henningsen) https://github.com/nodejs/node/pull/10382 * http: Improve performance of http server by ~7% (Brian White) https://github.com/nodejs/node/pull/6533 * npm: Upgrade to v4.0.5 (Kat Marchán) https://github.com/nodejs/node/pull/10330 PR-URL: https://github.com/nodejs/node/pull/10589
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 da55d394abf..f95d525ac2e 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -2,10 +2,10 @@
#define SRC_NODE_VERSION_H_
#define NODE_MAJOR_VERSION 7
-#define NODE_MINOR_VERSION 3
-#define NODE_PATCH_VERSION 1
+#define NODE_MINOR_VERSION 4
+#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)