diff options
author | Michaël Zasso <targos@protonmail.com> | 2020-12-21 21:14:19 +0100 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2020-12-22 15:00:08 +0100 |
commit | f978628b806b6650a90cd47e8b28590224af75e8 (patch) | |
tree | da505100ff54c75d10906f6f2cbcd27c18ab3c01 /src/node_version.h | |
parent | 01576fbc19ef424afec9d05b7f44fde239dab457 (diff) | |
download | node-new-f978628b806b6650a90cd47e8b28590224af75e8.tar.gz |
2020-12-22, Version 15.5.0 (Current)v15.5.0v15.5.0-proposal
Notable changes:
child_process:
* (SEMVER-MINOR) add signal support to spawn (Benjamin Gruenbaum) https://github.com/nodejs/node/pull/36432
doc:
* add PoojaDurgad to collaborators (Pooja D P) https://github.com/nodejs/node/pull/36511
lib:
* (SEMVER-MINOR) support BigInt in querystring.stringify (raisinten) https://github.com/nodejs/node/pull/36499
src:
* (SEMVER-MINOR) add way to get IsolateData and allocator from Environment (Anna Henningsen) https://github.com/nodejs/node/pull/36441
* (SEMVER-MINOR) allow preventing SetPrepareStackTraceCallback (Shelley Vohr) https://github.com/nodejs/node/pull/36447
stream:
* (SEMVER-MINOR) support abortsignal in constructor (Benjamin Gruenbaum) https://github.com/nodejs/node/pull/36431
PR-URL: https://github.com/nodejs/node/pull/36597
Diffstat (limited to 'src/node_version.h')
-rw-r--r-- | src/node_version.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/node_version.h b/src/node_version.h index 74e5dd6e86..212345321e 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -23,13 +23,13 @@ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 15 -#define NODE_MINOR_VERSION 4 -#define NODE_PATCH_VERSION 1 +#define NODE_MINOR_VERSION 5 +#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) |