summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2019-07-02 10:12:51 +0200
committerMichaël Zasso <targos@protonmail.com>2019-07-02 22:01:39 +0200
commite71a0f4d5faa4ad77887fbb3fff0ddb7bca6942e (patch)
treeb0c415e53a0a0d8be6e18866c0b9ff185ce1a075 /src
parent3a493b804e082e535ad7ff6390f02f98a01e17d2 (diff)
downloadandroid-node-v8-e71a0f4d5faa4ad77887fbb3fff0ddb7bca6942e.tar.gz
android-node-v8-e71a0f4d5faa4ad77887fbb3fff0ddb7bca6942e.tar.bz2
android-node-v8-e71a0f4d5faa4ad77887fbb3fff0ddb7bca6942e.zip
2019-07-03, Version 12.6.0 (Current)
Notable changes: * build: * Experimental support for building Node.js on MIPS architecture is back. https://github.com/nodejs/node/pull/27992 * child_process: * The promisified versions of `child_process.exec` and `child_process.execFile` now both return a `Promise` which has the child instance attached to their `child` property. https://github.com/nodejs/node/pull/28325 * deps: * Updated libuv to 1.30.1. https://github.com/nodejs/node/pull/28449, https://github.com/nodejs/node/pull/28511 * Support for the Haiku platform has been added. * The maximum `UV_THREADPOOL_SIZE` has been increased from 128 to 1024. * `uv_fs_copyfile()` now works properly when the source and destination files are the same. * process: * A new method, `process.resourceUsage()` was added. It returns resource usage for the current process, such as CPU time. https://github.com/nodejs/node/pull/28018 * src: * Fixed an issue related to stdio that could lead to a crash of the process in some circumstances. https://github.com/nodejs/node/pull/28490 * stream: * Added a `writableFinished` property to writable streams. It indicates that all the data has been flushed to the underlying system. https://github.com/nodejs/node/pull/28007 * worker: * Fixed an issue that prevented worker threads to listen for data on stdin. https://github.com/nodejs/node/pull/28153 * meta: * Added Jiawen Geng (https://github.com/gengjiawen) to collaborators. https://github.com/nodejs/node/pull/28322 PR-URL: https://github.com/nodejs/node/pull/28508
Diffstat (limited to 'src')
-rw-r--r--src/node_version.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/node_version.h b/src/node_version.h
index eaabb46f78..46f92e1b83 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_
#define NODE_MAJOR_VERSION 12
-#define NODE_MINOR_VERSION 5
-#define NODE_PATCH_VERSION 1
+#define NODE_MINOR_VERSION 6
+#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)