From 9f7f86b534f8556290eb8cad915984ff4ca54996 Mon Sep 17 00:00:00 2001
From: isaacs
Date: Wed, 14 Mar 2012 17:07:24 -0700
Subject: [PATCH] 2012.03.15 Version 0.6.13 (stable)
* Windows: Many libuv test fixes (Bert Belder)
* Windows: avoid uv_guess_handle crash in when fd < 0 (Bert Belder)
* Map EBUSY and ENOTEMPTY errors (Bert Belder)
* Windows: include syscall in fs errors (Bert Belder)
* Fix fs.watch ENOSYS on Linux kernel version mismatch (Ben Noordhuis)
* Update npm to 1.1.9
- upgrade node-gyp to 0.3.5 (Nathan Rajlich)
- Fix isaacs/npm#2249 Add cache-max and cache-min configs
- Properly redirect across https/http registry requests
- log config usage if undefined key in set function (Kris Windham)
- Add support for os/cpu fields in package.json (Adam Blackburn)
- Automatically node-gyp packages containing a binding.gyp
- Fix failures unpacking in UNC shares
- Never create un-listable directories
- Handle cases where an optionalDependency fails to build
---
ChangeLog | 26 +++++++++++++++++++++++++-
doc/about/index.html | 2 +-
doc/community/index.html | 2 +-
doc/index.html | 18 +++++++++---------
doc/logos/index.html | 2 +-
doc/template.html | 2 +-
src/node_version.h | 2 +-
7 files changed, 39 insertions(+), 15 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 7bb9808d461e0c..e831c3fc6df793 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,28 @@
-2012.03.02 Version 0.6.12 (stable)
+2012.03.15 Version 0.6.13 (stable)
+
+* Windows: Many libuv test fixes (Bert Belder)
+
+* Windows: avoid uv_guess_handle crash in when fd < 0 (Bert Belder)
+
+* Map EBUSY and ENOTEMPTY errors (Bert Belder)
+
+* Windows: include syscall in fs errors (Bert Belder)
+
+* Fix fs.watch ENOSYS on Linux kernel version mismatch (Ben Noordhuis)
+
+* Update npm to 1.1.9
+ - upgrade node-gyp to 0.3.5 (Nathan Rajlich)
+ - Fix isaacs/npm#2249 Add cache-max and cache-min configs
+ - Properly redirect across https/http registry requests
+ - log config usage if undefined key in set function (Kris Windham)
+ - Add support for os/cpu fields in package.json (Adam Blackburn)
+ - Automatically node-gyp packages containing a binding.gyp
+ - Fix failures unpacking in UNC shares
+ - Never create un-listable directories
+ - Handle cases where an optionalDependency fails to build
+
+
+2012.03.02 Version 0.6.12 (stable), 48a2d34cfe6b7e1c9d15202a4ef5e3c82d1fba35
* Upgrade V8 to 3.6.6.24
diff --git a/doc/about/index.html b/doc/about/index.html
index abafc77c08f2bf..c2c4d7427164d4 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-2012 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 d23161dd6aa3e8..b928b69d1bfe22 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-2012 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 7219bdac992744..fcd830beaa5e9f 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 13 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)