summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMyles Borins <mylesborins@google.com>2019-11-19 18:41:01 +0100
committerMyles Borins <mylesborins@google.com>2019-11-21 17:14:59 -0500
commitb8f8f0500213e7347d92465dd5120f632c05e253 (patch)
tree405e06dd27a3dd679cda26135fb4e4ea6a36a3e0 /src
parentcf1f1de1e621b311c7c50fc231159b8b918169f0 (diff)
downloadandroid-node-v8-b8f8f0500213e7347d92465dd5120f632c05e253.tar.gz
android-node-v8-b8f8f0500213e7347d92465dd5120f632c05e253.tar.bz2
android-node-v8-b8f8f0500213e7347d92465dd5120f632c05e253.zip
2019-11-21, Version 13.2.0 (Current)
Notable changes: * addons: * Deprecate one- and two-argument `AtExit()`. Use the three-argument variant of `AtExit()` or `AddEnvironmentCleanupHook()` instead (Anna Henningsen) https://github.com/nodejs/node/pull/30227 * child_process,cluster: * The `serialization` option is added that allows child process IPC to use the V8 serialization API (to e.g., pass through data types like sets or maps) (Anna Henningsen) https://github.com/nodejs/node/pull/30162 * deps: * Update V8 to 7.9 * Update `npm` to 6.13.0 (Ruy Adorno) https://github.com/nodejs/node/pull/30271 * embedder: * Exposes the ability to pass cli flags / options through an API as embedder (Shelley Vohr) https://github.com/nodejs/node/pull/30466 * Allow adding linked bindings to Environment (Anna Henningsen) https://github.com/nodejs/node/pull/30274 * esm: * Unflag --experimental-modules (Guy Bedford) https://github.com/nodejs/node/pull/29866 * stream: * Add `writable.writableCorked` property (Robert Nagy) https://github.com/nodejs/node/pull/29012 * worker: * Allow specifying resource limits (Anna Henningsen) https://github.com/nodejs/node/pull/26628 * v8: * The Serialization API is now stable (Anna Henningsen) https://github.com/nodejs/node/pull/30234 PR-URL: https://github.com/nodejs/node/pull/30547
Diffstat (limited to 'src')
-rw-r--r--src/node_version.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_version.h b/src/node_version.h
index ebd3cff606..229bf5d2de 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 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)