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:
authorMyles Borins <mylesborins@google.com>2020-03-11 01:56:51 +0300
committerMyles Borins <mylesborins@google.com>2020-03-12 04:31:27 +0300
commit4a53612c70c0abc35f57c2292f278071c9cd4710 (patch)
treedf6c88c1f732d618c8aac30fe5d48ed211e59897 /src/node_version.h
parentfab8c83253e3e4a313c12fea43021e0d2e507cef (diff)
2020-03-11 Version 13.11.0 (Current)v13.11.0
Notable changes: * async_hooks: - add sync enterWith to ALS (Stephen Belanger) https://github.com/nodejs/node/pull/31945 * cli: - allow --jitless V8 flag in NODE\_OPTIONS (Andrew Neitsch) https://github.com/nodejs/node/pull/32100 * fs: - return first folder made by mkdir recursive (Benjamin Coe) https://github.com/nodejs/node/pull/31530 * n-api: - define release 6 (Gabriel Schulhof) https://github.com/nodejs/node/pull/32058 * src: - create a getter for kernel version (Juan José Arboleda) https://github.com/nodejs/node/pull/31732 * wasi: - add returnOnExit option (Colin Ihrig) https://github.com/nodejs/node/pull/32101 PR-URL: https://github.com/nodejs/node/pull/32185
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 d5f031a9bac..978cb58fa6b 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_
#define NODE_MAJOR_VERSION 13
-#define NODE_MINOR_VERSION 10
-#define NODE_PATCH_VERSION 2
+#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)