From a3efcd2006614c3835c9395b91ab89c1f260806c Mon Sep 17 00:00:00 2001
From: isaacs
Date: Tue, 31 Jan 2012 18:43:23 -0800
Subject: [PATCH] 2012.02.01, Version 0.7.2 (unstable)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
* Update V8 to 3.8.9
* Support for sharing streams across Isolates (Igor Zinkovsky)
* #2636 - Fix case where http_parsers are freed too early (koichik)
* url: Support for IPv6 addresses in URLs (Łukasz Walukiewicz)
* child_process: Add disconnect() method to child processes (Andreas Madsen)
* fs: add O_EXCL support, exclusive open file (Ben Noordhuis)
* fs: more specific error messages (Tj Holowaychuk)
* tty: emit 'unknown' key event if key sequence not found (Dan VerWeire, Nathan Rajlich)
* build: compile release build too if BUILDTYPE=Debug (Ben Noordhuis)
* module: fix --debug-brk on symlinked scripts (Fedor Indutny)
* zlib: fix `Failed to set dictionary` issue (Fedor Indutny)
* waf: predict target arch for OS X (Fedor Indutny)
---
ChangeLog | 31 +++++++++++++++++++++++++++++--
doc/about/index.html | 2 +-
doc/community/index.html | 2 +-
doc/index.html | 18 +++++++++---------
doc/logos/index.html | 2 +-
doc/template.html | 6 +++---
src/node_version.h | 2 +-
7 files changed, 45 insertions(+), 18 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index f49b6d70acbe6f..f309a062f1f601 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,31 @@
-2012.01.23, Version 0.7.1 (unstable)
+2012.02.01, Version 0.7.2 (unstable)
+
+* Update V8 to 3.8.9
+
+* Support for sharing streams across Isolates (Igor Zinkovsky)
+
+* #2636 - Fix case where http_parsers are freed too early (koichik)
+
+* url: Support for IPv6 addresses in URLs (Łukasz Walukiewicz)
+
+* child_process: Add disconnect() method to child processes (Andreas Madsen)
+
+* fs: add O_EXCL support, exclusive open file (Ben Noordhuis)
+
+* fs: more specific error messages (Tj Holowaychuk)
+
+* tty: emit 'unknown' key event if key sequence not found (Dan VerWeire, Nathan Rajlich)
+
+* build: compile release build too if BUILDTYPE=Debug (Ben Noordhuis)
+
+* module: fix --debug-brk on symlinked scripts (Fedor Indutny)
+
+* zlib: fix `Failed to set dictionary` issue (Fedor Indutny)
+
+* waf: predict target arch for OS X (Fedor Indutny)
+
+
+2012.01.23, Version 0.7.1 (unstable), a74354735ab5d5b0fa35a1e4ff7e653757d2069b
* Update V8 to 3.8.8
@@ -32,7 +59,7 @@
* Bug fixes
-2012.01.27, Version 0.6.9 (stable)
+2012.01.27, Version 0.6.9 (stable), f19e20d33f57c4d2853aaea7d2724d44f3b0012f
* dgram: Bring back missing functionality for Unix (Dan VerWeire, Roman Shtylman, Ben Noordhuis)
- Note: Windows UDP support not yet complete.
diff --git a/doc/about/index.html b/doc/about/index.html
index f209769a5bb96f..28e712c2566ea7 100644
--- a/doc/about/index.html
+++ b/doc/about/index.html
@@ -130,7 +130,7 @@ Node's goal is to provide an easy way to build scalable
Copyright 2010 Joyent, Inc, Node.js is a trademark of Joyent, Inc. View license.
+Copyright 2010 Joyent, Inc, Node.js is a trademark of Joyent, Inc. View license.
diff --git a/doc/community/index.html b/doc/community/index.html index ef9bac5ae1c49a..ff91d3bd2eda2c 100644 --- a/doc/community/index.html +++ b/doc/community/index.html @@ -180,7 +180,7 @@Copyright 2010 Joyent, Inc, Node.js is a trademark of Joyent, Inc. View license.
+Copyright 2010 Joyent, Inc, Node.js is a trademark of Joyent, Inc. View license.
diff --git a/src/node_version.h b/src/node_version.h index d849ca1721d632..9051350f2f186e 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -29,7 +29,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 7 #define NODE_PATCH_VERSION 2 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)