diff options
| author | Anna Henningsen <anna@addaleax.net> | 2017-08-13 22:33:49 +0200 |
|---|---|---|
| committer | Anna Henningsen <anna@addaleax.net> | 2017-08-14 17:40:18 +0200 |
| commit | 56a0577b2ebf111346779cf790a1f54e0e464078 (patch) | |
| tree | 724a93a30fe47a3d4319b6495a99a2e716c3f7f9 /src/node_version.h | |
| parent | dd521d0a2801f1c2a482e270eddba44dc0e88ccc (diff) | |
| download | node-new-v8.4.0-proposal.tar.gz | |
2017-08-15, Version 8.4.0 (Current)v8.4.0v8.4.0-proposal
Notable changes
* **HTTP2**
* Experimental support for the built-in `http2` has been added via the
`--expose-http2` flag.
[#14239](https://github.com/nodejs/node/pull/14239)
* **Inspector**
* `require()` is available in the inspector console now.
[#8837](https://github.com/nodejs/node/pull/8837)
* Multiple contexts, as created by the `vm` module, are supported now.
[#14465](https://github.com/nodejs/node/pull/14465)
* **N-API**
* New APIs for creating number values have been introduced.
[#14573](https://github.com/nodejs/node/pull/14573)
* **Stream**
* For `Duplex` streams, the high water mark option can now be set
independently for the readable and the writable side.
[#14636](https://github.com/nodejs/node/pull/14636)
* **Util**
* `util.format` now supports the `%o` and `%O` specifiers for printing
objects.
[#14558](https://github.com/nodejs/node/pull/14558)
PR-URL: https://github.com/nodejs/node/pull/14811
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 7dc100d800..8683a9820a 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 3 -#define NODE_PATCH_VERSION 1 +#define NODE_MINOR_VERSION 4 +#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) |
