summaryrefslogtreecommitdiff
path: root/src/node_version.h
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2017-11-07 09:03:44 -0500
committercjihrig <cjihrig@gmail.com>2017-11-07 09:24:41 -0500
commit9de633dea8c50bc7d88b62d190e8c3c7242c0f13 (patch)
tree958f81e70b6cdc6d2b80c30276070e740e4f113f /src/node_version.h
parentdee7800ae8025dd1d9ee288839e41107a1de75b2 (diff)
downloadnode-new-v9.1.0-proposal.tar.gz
2017-11-07, Version 9.1.0 (Current)v9.1.0v9.1.0-proposal
Notable changes: * CLI: - NODE_OPTIONS now supports the --stack-trace-limit option. https://github.com/nodejs/node/pull/16495 * deps: - OpenSSL is upgraded to 1.0.2m https://github.com/nodejs/node/pull/16691 * http: - A 'connect' event handler leak has been fixed. https://github.com/nodejs/node/pull/16725 - The 103 Early Hints status code is now supported. https://github.com/nodejs/node/pull/16644 PR-URL: https://github.com/nodejs/node/pull/16851
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 674f353358..fbb6bc7930 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -23,10 +23,10 @@
#define SRC_NODE_VERSION_H_
#define NODE_MAJOR_VERSION 9
-#define NODE_MINOR_VERSION 0
-#define NODE_PATCH_VERSION 1
+#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)