diff options
author | Shelley Vohr <shelley.vohr@gmail.com> | 2020-02-17 13:02:21 -0800 |
---|---|---|
committer | Shelley Vohr <shelley.vohr@gmail.com> | 2020-02-18 12:40:21 -0800 |
commit | 0c3c0e7184c4ca625148c14d61d8e9438a1b69f2 (patch) | |
tree | d0955139a52df456bd57d01552d1d43ad7bd38ab /src/node_version.h | |
parent | 8ba7a2f889472d58478bf40b758d336b41af682b (diff) | |
download | node-new-0c3c0e7184c4ca625148c14d61d8e9438a1b69f2.tar.gz |
2020-02-18, Version 13.9.0 (Current)
Notable changes:
* async_hooks
* add executionAsyncResource (Matteo Collina) #30959
* crypto
* add crypto.diffieHellman (Tobias Nießen) #31178
* add DH support to generateKeyPair (Tobias Nießen) #31178
* simplify DH groups (Tobias Nießen) #31178
* add key type 'dh' (Tobias Nießen) #31178
* test
* skip keygen tests on arm systems (Tobias Nießen) #31178
* perf_hooks
* add property flags to GCPerformanceEntry (Kirill Fomichev) #29547
* process
* report ArrayBuffer memory in `memoryUsage()` (Anna Henningsen) #31550
* readline
* make tab size configurable (Ruben Bridgewater) #31318
* report
* add support for Workers (Anna Henningsen) #31386
* worker
* add ability to take heap snapshot from parent thread (Anna Henningsen) #31569
* added new collaborators
* add ronag to collaborators (Robert Nagy) #31498
PR-URL: https://github.com/nodejs/node/pull/31837
Diffstat (limited to 'src/node_version.h')
-rw-r--r-- | src/node_version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_version.h b/src/node_version.h index 229bf5d2de..ebd3cff606 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -29,7 +29,7 @@ #define NODE_VERSION_IS_LTS 0 #define NODE_VERSION_LTS_CODENAME "" -#define NODE_VERSION_IS_RELEASE 1 +#define NODE_VERSION_IS_RELEASE 0 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) |