diff options
author | Myles Borins <mylesborins@google.com> | 2017-10-17 17:01:29 -0400 |
---|---|---|
committer | Myles Borins <mylesborins@google.com> | 2017-11-06 15:17:29 -0500 |
commit | c6a2ec5a408cb5d32f0dce161288be7a837c6943 (patch) | |
tree | 00476cdae3833686d63476cacd8919533d76d528 /src | |
parent | b98fa82de6c564c9779d6753b3efb325f9f4c998 (diff) | |
download | node-new-c6a2ec5a408cb5d32f0dce161288be7a837c6943.tar.gz |
2017-11-07, Version 6.12.0 'Boron' (LTS)v6.12.0v6.12.0-proposal
Notable Changes:
* assert:
- assert.fail() can now take one or two arguments (Rich Trott)
https://github.com/nodejs/node/pull/12293
* crypto:
- add sign/verify support for RSASSA-PSS (Tobias Nießen)
https://github.com/nodejs/node/pull/11705
* deps:
- upgrade openssl sources to 1.0.2m (Shigeki Ohtsu)
https://github.com/nodejs/node/pull/16691
- upgrade libuv to 1.15.0 (cjihrig)
https://github.com/nodejs/node/pull/15745
- upgrade libuv to 1.14.1 (cjihrig)
https://github.com/nodejs/node/pull/14866
- upgrade libuv to 1.13.1 (cjihrig)
https://github.com/nodejs/node/pull/14117
- upgrade libuv to 1.12.0 (cjihrig)
https://github.com/nodejs/node/pull/13306
* fs:
- Add support for fs.write/fs.writeSync(fd, buffer, cb) and
fs.write/fs.writeSync(fd, buffer, offset, cb) as documented
(Andreas Lind) https://github.com/nodejs/node/pull/7856
* inspector:
- enable --inspect-brk (Refael Ackermann)
https://github.com/nodejs/node/pull/12615
* process:
- add --redirect-warnings command line argument (James M Snell)
https://github.com/nodejs/node/pull/10116
* src:
- allow CLI args in env with NODE_OPTIONS (Sam Roberts)
https://github.com/nodejs/node/pull/12028)
- --abort-on-uncaught-exception in NODE_OPTIONS (Sam Roberts)
https://github.com/nodejs/node/pull/13932
- allow --tls-cipher-list in NODE_OPTIONS (Sam Roberts)
https://github.com/nodejs/node/pull/13172
- use SafeGetenv() for NODE_REDIRECT_WARNINGS (Sam Roberts)
https://github.com/nodejs/node/pull/12677
* test:
- remove common.fail() (Rich Trott)
https://github.com/nodejs/node/pull/12293
PR-URL: https://github.com/nodejs/node/pull/16263
Diffstat (limited to 'src')
-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 0d67784761..4632dbb59b 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -2,13 +2,13 @@ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 6 -#define NODE_MINOR_VERSION 11 -#define NODE_PATCH_VERSION 6 +#define NODE_MINOR_VERSION 12 +#define NODE_PATCH_VERSION 0 #define NODE_VERSION_IS_LTS 1 #define NODE_VERSION_LTS_CODENAME "Boron" -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) |