From 051908e023f87894fa68f5b64d0b99a19a7db01e Mon Sep 17 00:00:00 2001
From: isaacs
Date: Thu, 2 Feb 2012 16:04:47 -0800
Subject: [PATCH] 2012.02.02, Version 0.6.10 (stable)
* Update V8 to 3.6.6.20
* Add npm msysgit bash shim to msi installer (isaacs)
* buffers: fix intermittent out of bounds error (Ben Noordhuis)
* buffers: honor length argument in base64 decoder (Ben Noordhuis)
* windows: Fix path.exists regression (Bert Belder)
* Make QueryString.parse run faster (Philip Tellis)
* http: avoid freeing http-parser objects too early (koichik)
* timers: add v0.4 compatibility hack (Ben Noordhuis)
* Proper EPERM error code support (Igor Zinkovsky, Brandon Philips)
* dgram: Implement udp multicast methods on windows (Bert Belder)
---
ChangeLog | 25 ++++++++++++++++++++++++-
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, 40 insertions(+), 17 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 5f3b69f5a8fb76..b778f6cb61596f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,27 @@
-2012.01.27, Version 0.6.9 (stable)
+2012.02.02, Version 0.6.10 (stable)
+
+* Update V8 to 3.6.6.20
+
+* Add npm msysgit bash shim to msi installer (isaacs)
+
+* buffers: fix intermittent out of bounds error (Ben Noordhuis)
+
+* buffers: honor length argument in base64 decoder (Ben Noordhuis)
+
+* windows: Fix path.exists regression (Bert Belder)
+
+* Make QueryString.parse run faster (Philip Tellis)
+
+* http: avoid freeing http-parser objects too early (koichik)
+
+* timers: add v0.4 compatibility hack (Ben Noordhuis)
+
+* Proper EPERM error code support (Igor Zinkovsky, Brandon Philips)
+
+* dgram: Implement udp multicast methods on windows (Bert Belder)
+
+
+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..e6d3fdb6ff894d 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..bd15c12678d260 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 071fe984bcdb13..021bad766421d2 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -29,7 +29,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 6 #define NODE_PATCH_VERSION 10 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)