diff options
| author | Anna Henningsen <anna@addaleax.net> | 2017-08-02 12:52:34 +0200 |
|---|---|---|
| committer | Anna Henningsen <anna@addaleax.net> | 2017-08-09 20:12:40 +0200 |
| commit | fb88fa19f1268d9627035eea0a402d3802a2d26a (patch) | |
| tree | 5560bc3dbced0c1874b2b86e4b9b590e14602e9a /src/node_version.h | |
| parent | ad901ed272688a08662f49f5c09340fff54e85bf (diff) | |
| download | node-new-v8.3.0-proposal.tar.gz | |
2017-08-09, Version 8.3.0 (Current)v8.3.0v8.3.0-proposal
V8 6.0:
The V8 engine has been upgraded to version 6.0, which has a significantly
changed performance profile.
[#14574](https://github.com/nodejs/node/pull/14574)
More detailed information on performance differences can be found at
https://medium.com/the-node-js-collection/get-ready-a-new-v8-is-coming-node-js-performance-is-changing-46a63d6da4de
Other notable changes:
* **DNS**
* Independent DNS resolver instances are supported now, with support for
cancelling the corresponding requests.
[#14518](https://github.com/nodejs/node/pull/14518)
* **N-API**
* Multiple N-API functions for error handling have been changed to support
assigning error codes.
[#13988](https://github.com/nodejs/node/pull/13988)
* **REPL**
* Autocompletion support for `require()` has been improved.
[#14409](https://github.com/nodejs/node/pull/14409)
* **Utilities**
* The WHATWG Encoding Standard (`TextDecoder` and `TextEncoder`) has
been implemented as an experimental feature.
[#13644](https://github.com/nodejs/node/pull/13644)
* **Added new collaborators**
* [XadillaX](https://github.com/XadillaX) – Khaidi Chu
* [gabrielschulhof](https://github.com/gabrielschulhof) – Gabriel Schulhof
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 4fbeac60e8..5f1b5fe472 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -23,10 +23,10 @@ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 8 -#define NODE_MINOR_VERSION 2 -#define NODE_PATCH_VERSION 1 +#define NODE_MINOR_VERSION 3 +#define NODE_PATCH_VERSION 0 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) |
