summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-08-04 12:04:12 -0700
committerRyan Dahl <ry@tinyclouds.org>2010-08-04 12:04:12 -0700
commit0b925d075d359d03426f0b32bb58a5e05825b4ea (patch)
treebb2dad818e7225fe3f12a6c435c2fa3be230cae7
parent81f5ed5c654c7b06e11563c36c79024265bcb7e7 (diff)
downloadnode-0.1.103.tar.gz
bump versionv0.1.103
-rw-r--r--ChangeLog26
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html4
-rw-r--r--src/node_version.h2
4 files changed, 29 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index af831b65e..82ca8538a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,28 @@
-2010.07.25, Version 0.1.102
+2010.08.04, Version 0.1.103
+
+* Implement keep-alive for http.Client (Mikeal Rogers)
+
+* base64 fixes. (Ben Noordhuis)
+
+* Fix --debug-brk (Danny Coates)
+
+* Don't let path.normalize get above the root. (Isaac Schlueter)
+
+* Allow signals to be used with process.on in addition to
+ process.addListener. (Brian White)
+
+* Globalize the Buffer object
+
+* Use kqueue on recent macintosh builds
+
+* Fix addrlen for unix_dgram sockets (Benjamin Kramer)
+
+* Fix stats.isDirectory() and friends (Benjamin Kramer)
+
+* Upgrade http-parser, V8 to 2.3.5
+
+
+2010.07.25, Version 0.1.102, 2a4568c85f33869c75ff43ccd30f0ec188b43eab
* base64 encoding for Buffers.
diff --git a/doc/api_header.html b/doc/api_header.html
index 61d4798e8..dd20a725c 100644
--- a/doc/api_header.html
+++ b/doc/api_header.html
@@ -295,7 +295,7 @@
<body>
<div id="toc">
- <div id="toctitle">Node v0.1.102</div>
+ <div id="toctitle">Node v0.1.103</div>
<noscript>JavaScript must be enabled in your browser to display the table of contents.</noscript>
</div>
<div id='man'>
diff --git a/doc/index.html b/doc/index.html
index 041e63ca5..76c4d963e 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -89,8 +89,8 @@ net.createServer(function (socket) {
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2010.07.25
- <a href="http://nodejs.org/dist/node-v0.1.102.tar.gz">node-v0.1.102.tar.gz</a>
+ 2010.08.04
+ <a href="http://nodejs.org/dist/node-v0.1.103.tar.gz">node-v0.1.103.tar.gz</a>
</p>
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
diff --git a/src/node_version.h b/src/node_version.h
index c4b98e3dd..5efdd3a76 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -6,7 +6,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 1
-#define NODE_PATCH_VERSION 102
+#define NODE_PATCH_VERSION 103
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)