From 22187ece13f044a25538708339429f2e82d9c003 Mon Sep 17 00:00:00 2001 From: Jeremiah Senkpiel Date: Tue, 10 Nov 2015 11:19:27 -0500 Subject: [PATCH] 2015-11-17, Version 5.1.0 (Stable) Notable changes: * buffer: The `noAssert` option for many buffer functions will now silently drop invalid write values rather than crashing (P.S.V.R) https://github.com/nodejs/node/pull/3767. - This makes the behavior match what the docs suggest. * child_process: `child.send()` now properly returns a boolean like the docs suggest (Rich Trott) https://github.com/nodejs/node/pull/3577. * doc: All of the API docs have been re-ordered so as to read in alphabetical order (Tristian Flanagan) https://github.com/nodejs/node/pull/3662. * http_parser: update http-parser to 2.6.0 from 2.5.0 (James M Snell) https://github.com/nodejs/node/pull/3569. - Now supports the following HTTP methods: `LINK`, `UNLINK`, `BIND`, `REBIND`, `UNBIND`. - Also added ACL and IPv6 Zone ID support. * npm: upgrade npm to 3.3.12 from v3.3.6 (Rebecca Turner) https://github.com/nodejs/node/pull/3685. - See the release notes for https://github.com/npm/npm/releases/tag/v3.3.7, https://github.com/npm/npm/releases/tag/v3.3.8, https://github.com/npm/npm/releases/tag/v3.3.9, https://github.com/npm/npm/releases/tag/v3.3.10, https://github.com/npm/npm/releases/tag/v3.3.11, and https://github.com/npm/npm/releases/tag/v3.3.12 for more details. * repl: The REPL no longer crashes if the persistent history file cannot be opened (Evan Lucas) https://github.com/nodejs/node/pull/3630. * tls: The default `sessionIdContext` now uses SHA1 in FIPS mode rather than MD5 (Stefan Budeanu) https://github.com/nodejs/node/pull/3755. * v8: Added some more useful post-mortem data (Fedor Indutny) https://github.com/nodejs/node/pull/3779. PR-URL: https://github.com/nodejs/node/pull/3736 --- src/node_version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_version.h b/src/node_version.h index b7402e544f..d0627ff91a 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -5,7 +5,7 @@ #define NODE_MINOR_VERSION 0 #define NODE_PATCH_VERSION 1 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)