summaryrefslogtreecommitdiff
path: root/src/node_version.h
diff options
context:
space:
mode:
authorGibson Fahnestock <gibfahn@gmail.com>2017-10-31 00:14:16 +0000
committerGibson Fahnestock <gibfahn@gmail.com>2017-10-31 14:04:01 +0000
commitf76ce0a75641991bfc235775a4747c978e0e281b (patch)
tree3baca89122df2acef508ec8275aaa3ca05d6fd83 /src/node_version.h
parent3454c82be925475dcc2558d0f9bf4d83629bf053 (diff)
downloadnode-new-v8.9.0-proposal.tar.gz
2017-10-31, Version 8.9.0 'Carbon' (LTS) Releasev8.9.0v8.9.0-proposal
This LTS release comes with 87 commits. This includes 30 that are updates to lib/ or src/, 20 that are test related, 13 that are doc related, 19 which are build / tools related, and 4 commits which are updates to dependencies. Notable Changes: * doc: - add Gibson Fahnestock to Release team (Gibson Fahnestock) https://github.com/nodejs/node/pull/16620 * deps: - update npm to 5.5.1 (Myles Borins) https://github.com/nodejs/node/pull/16509 * http2: - The exposed http2 socket is no longer manipulatable (Anatoli Papirovski) https://github.com/nodejs/node/pull/16330 * module: - support custom paths to require.resolve() (cjihrig) https://github.com/nodejs/node/pull/16397 * util: - util.TextEncoder and util.TextDecoder are no longer experimental. There will no longer be a warning when they are used (James M Snell) https://github.com/nodejs/node/pull/15743 PR-URL: https://github.com/nodejs/node/pull/16630
Diffstat (limited to 'src/node_version.h')
-rw-r--r--src/node_version.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/node_version.h b/src/node_version.h
index ea9547137b..028d83acca 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -23,10 +23,13 @@
#define SRC_NODE_VERSION_H_
#define NODE_MAJOR_VERSION 8
-#define NODE_MINOR_VERSION 8
-#define NODE_PATCH_VERSION 2
+#define NODE_MINOR_VERSION 9
+#define NODE_PATCH_VERSION 0
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_LTS 1
+#define NODE_VERSION_LTS_CODENAME "Carbon"
+
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)