diff options
author | Timothy J Fontaine <tjfontaine@gmail.com> | 2013-09-04 14:01:26 -0700 |
---|---|---|
committer | Timothy J Fontaine <tjfontaine@gmail.com> | 2013-09-04 14:01:26 -0700 |
commit | be52549bfa5311208b5fcdb3ba09210460fa9ceb (patch) | |
tree | f7fc96e85523e894812cc7dcae1361ab62450a97 | |
parent | 15a5a4a9453a056b783c7ff0966e31c3c6b7d7e1 (diff) | |
download | node-new-v0.11.7-release.tar.gz |
2013.08.21, Version 0.11.7 (Unstable)v0.11.7v0.11.7-release
* uv: upgrade to v0.11.13
* v8: upgrade to 3.20.17
* buffer: adhere to INSPECT_MAX_BYTES (Timothy J Fontaine)
* buffer: fix regression for large buffer creation (Trevor Norris)
* buffer: don't throw if slice length too long (Trevor Norris)
* buffer: Buffer(buf) constructor copies into the proper buffer (Ben Noordhuis)
* cli: remove --max-stack-size (Ben Noordhuis)
* cli: unknown command line options are errors (Ben Noordhuis)
* child_process: exec accept buffer as an encoding (Seth Fitzsimmons)
* crypto: make randomBytes/pbkdf2 callbacks domain aware (Ben Noordhuis)
* domain: deprecate domain.dispose(). (Forrest L Norvell)
* fs: Expose birthtime on stat objects (isaacs)
* http: Only send connection:keep-alive if necessary (isaacs)
* repl: Catch syntax errors better (isaacs, Nathan Rajlich)
* stream: change default highWaterMark for objectMode to 16 (Mathias Buus)
* stream: make setEncoding/pause/resume chainable (Julian Gruber, isaacs)
* util: pass opts to custom inspect functions (Timothy J Fontaine)
* vm: rewritten to behave like Contextify (Domenic Denicola)
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | ChangeLog | 41 | ||||
-rw-r--r-- | src/node_version.h | 2 |
3 files changed, 42 insertions, 2 deletions
@@ -483,3 +483,4 @@ Matthias Bartelmeß <mba@fourplusone.de> James Halliday <mail@substack.net> Matthew Aynalem <maynalem@gmail.com> Vsevolod Strukchinsky <floatdrop@yandex-team.ru> +Jay Beavers <jay@hikinghomeschoolers.org> @@ -1,4 +1,43 @@ -2013.08.21, Version 0.11.6 (Unstable) +2013.08.21, Version 0.11.7 (Unstable) + +* uv: upgrade to v0.11.13 + +* v8: upgrade to 3.20.17 + +* buffer: adhere to INSPECT_MAX_BYTES (Timothy J Fontaine) + +* buffer: fix regression for large buffer creation (Trevor Norris) + +* buffer: don't throw if slice length too long (Trevor Norris) + +* buffer: Buffer(buf) constructor copies into the proper buffer (Ben Noordhuis) + +* cli: remove --max-stack-size (Ben Noordhuis) + +* cli: unknown command line options are errors (Ben Noordhuis) + +* child_process: exec accept buffer as an encoding (Seth Fitzsimmons) + +* crypto: make randomBytes/pbkdf2 callbacks domain aware (Ben Noordhuis) + +* domain: deprecate domain.dispose(). (Forrest L Norvell) + +* fs: Expose birthtime on stat objects (isaacs) + +* http: Only send connection:keep-alive if necessary (isaacs) + +* repl: Catch syntax errors better (isaacs, Nathan Rajlich) + +* stream: change default highWaterMark for objectMode to 16 (Mathias Buus) + +* stream: make setEncoding/pause/resume chainable (Julian Gruber, isaacs) + +* util: pass opts to custom inspect functions (Timothy J Fontaine) + +* vm: rewritten to behave like Contextify (Domenic Denicola) + + +2013.08.21, Version 0.11.6 (Unstable), 04018d4b3938fd30ba14822e79195e4af2be36f6 * uv: Upgrade to v0.11.8 diff --git a/src/node_version.h b/src/node_version.h index 47f5714842..9c2e9ec499 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -26,7 +26,7 @@ #define NODE_MINOR_VERSION 11 #define NODE_PATCH_VERSION 7 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_TAG # define NODE_TAG "" |