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:
authorDanielle Adams <adamzdanielle@gmail.com>2022-10-11 17:37:32 +0300
committerDanielle Adams <adamzdanielle@gmail.com>2022-10-13 15:09:33 +0300
commit8c1dd95f3cc5d91acb9ce8994b3ac45ab927178f (patch)
tree86a3a2923d41d0311fbbbd735fe2346ad4540671 /src
parent9ac029ea117f0242a4042d8bbaffedfeb8d65b4f (diff)
2022-10-13, Version 18.11.0 (Current)v18.11.0
watch mode (experimental): Running in 'watch' mode using `node --watch` restarts the process when an imported file is changed. Contributed by Moshe Atlow in https://github.com/nodejs/node/pull/44366 Other notable changes: * fs: * (SEMVER-MINOR) add `FileHandle.prototype.readLines` (Antoine du Hamel) https://github.com/nodejs/node/pull/42590 * http: * (SEMVER-MINOR) add writeEarlyHints function to ServerResponse (Wing) https://github.com/nodejs/node/pull/44180 * http2: * (SEMVER-MINOR) make early hints generic (Yagiz Nizipli) https://github.com/nodejs/node/pull/44820 * lib: * (SEMVER-MINOR) refactor transferable AbortSignal (flakey5) https://github.com/nodejs/node/pull/44048 * src: * (SEMVER-MINOR) add detailed embedder process initialization API (Anna Henningsen) https://github.com/nodejs/node/pull/44121 * util: * (SEMVER-MINOR) add default value option to parsearg (Manuel Spigolon) https://github.com/nodejs/node/pull/44631 PR-URL: https://github.com/nodejs/node/pull/44968
Diffstat (limited to 'src')
-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 8e301f6e8f2..457daf4f991 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 10
-#define NODE_PATCH_VERSION 1
+#define NODE_MINOR_VERSION 11
+#define NODE_PATCH_VERSION 0
#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)