diff options
author | Danielle Adams <adamzdanielle@gmail.com> | 2020-11-09 14:47:44 -0500 |
---|---|---|
committer | Danielle Adams <adamzdanielle@gmail.com> | 2020-11-10 14:04:38 -0500 |
commit | 5ecd1c93d88c7637c76e3d2108061623efdc5e4e (patch) | |
tree | f20e9ff99f93cc61730b215ba5575c6da655466d /src/node_version.h | |
parent | 9774b4cc7276b86dd42f8a030076d90a08582cc8 (diff) | |
download | node-new-v15.2.0-proposal.tar.gz |
2020-11-10, Version 15.2.0 (Current)v15.2.0v15.2.0-proposal
Notable changes:
* events:
* getEventListeners static (Benjamin Gruenbaum) (https://github.com/nodejs/node/pull/35991)
* fs:
* support abortsignal in writeFile (Benjamin Gruenbaum) (https://github.com/nodejs/node/pull/35993)
* add support for AbortSignal in readFile (Benjamin Gruenbaum) (https://github.com/nodejs/node/pull/35911)
* stream:
* fix thrown object reference (Gil Pedersen) (https://github.com/nodejs/node/pull/36065)
PR URL: https://github.com/nodejs/node/pull/36055
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 79e7191bdb..7ae6730832 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 1 -#define NODE_PATCH_VERSION 1 +#define NODE_MINOR_VERSION 2 +#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) |