diff options
| author | Beth Griggs <Bethany.Griggs@uk.ibm.com> | 2020-04-27 21:01:35 +0100 |
|---|---|---|
| committer | Beth Griggs <Bethany.Griggs@uk.ibm.com> | 2020-04-29 16:41:52 +0100 |
| commit | 9ffd8e7a7414052834bfedb0daba68d5c8363884 (patch) | |
| tree | e6dc28b6315ef8c417f59669121d5591c6790546 /src/node_version.h | |
| parent | ae157b8ca79ad26a3fb69f1e72ab4df0718aa811 (diff) | |
| download | node-new-v14.1.0-proposal.tar.gz | |
2020-04-29, Version 14.1.0 (Current)v14.1.0v14.1.0-proposal
Notable changes:
- deps: upgrade openssl sources to 1.1.1g (Hassaan Pasha)
[#32971](https://github.com/nodejs/node/pull/32971)
- doc: add juanarbol as collaborator (Juan José Arboleda)
[#32906](https://github.com/nodejs/node/pull/32906)
- http: doc deprecate abort and improve docs (Robert Nagy)
[#32807](https://github.com/nodejs/node/pull/32807)
- module: do not warn when accessing `__esModule` of unfinished exports
(Anna Henningsen) [#33048](https://github.com/nodejs/node/pull/33048)
- n-api: detect deadlocks in thread-safe function (Gabriel Schulhof)
[#32860](https://github.com/nodejs/node/pull/32860)
- src: deprecate embedder APIs with replacements (Anna Henningsen)
[#32858](https://github.com/nodejs/node/pull/32858)
- stream:
- don't emit end after close (Robert Nagy)
[#33076](https://github.com/nodejs/node/pull/33076)
- don't wait for close on legacy streams (Robert Nagy)
[#33058](https://github.com/nodejs/node/pull/33058)
- pipeline should only destroy un-finished streams (Robert Nagy)
[#32968](https://github.com/nodejs/node/pull/32968)
- vm: add importModuleDynamically option to compileFunction (Gus Caplan)
[#32985](https://github.com/nodejs/node/pull/32985)
PR-URL: https://github.com/nodejs/node/pull/33103
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 a8317b2239..372ca6e779 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -23,13 +23,13 @@ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 14 -#define NODE_MINOR_VERSION 0 -#define NODE_PATCH_VERSION 1 +#define NODE_MINOR_VERSION 1 +#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) |
