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
path: root/src
diff options
context:
space:
mode:
authorRuy Adorno <ruyadorno@google.com>2022-10-20 23:54:55 +0300
committerRuy Adorno <ruyadorno@google.com>2022-10-21 00:10:27 +0300
commita4bcc81994c99dbc04089e3ed8d1f5a30a4dc716 (patch)
tree67bfe332935fa587db783f184ec800f6b3d97f5c /src
parentcc6a96f61c321e0d0c6faaa3e1d4f1569cdd6b1f (diff)
2022-10-25, Version 18.12.0 'Hydrogen' (LTS)v18.12.0
Notable changes: This release marks the transition of Node.js 18.x into Long Term Support (LTS) with the codename 'Hydrogen'. The 18.x release line now moves into "Active LTS" and will remain so until October 2023. After that time, it will move into "Maintenance" until end of life in April 2025. PR-URL: https://github.com/nodejs/node/pull/45100
Diffstat (limited to 'src')
-rw-r--r--src/node_version.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/node_version.h b/src/node_version.h
index 95702b5749b..bd75c5fe0ae 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_
#define NODE_MAJOR_VERSION 18
-#define NODE_MINOR_VERSION 11
-#define NODE_PATCH_VERSION 1
+#define NODE_MINOR_VERSION 12
+#define NODE_PATCH_VERSION 0
-#define NODE_VERSION_IS_LTS 0
-#define NODE_VERSION_LTS_CODENAME ""
+#define NODE_VERSION_IS_LTS 1
+#define NODE_VERSION_LTS_CODENAME "Hydrogen"
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)