Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-08-13 19:06:31 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-08-13 20:02:10 +0400
commitb14dd49222687c12f3e8eac597cff4f2674f84e8 (patch)
tree63ec4468c098bc87b4930f320e63e510efd7be28
parenta8c2bb41af6aa164af6ce0fad5daff98c5228c33 (diff)
bump versionv0.1.104
-rw-r--r--ChangeLog16
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html4
-rw-r--r--src/node_version.h2
4 files changed, 19 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 091f61b17b5..79694bfebbc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,18 @@
-2010.08.04, Version 0.1.103
+2010.08.13, Version 0.1.104
+
+* Various bug fixes (console, querystring, require)
+
+* Set cwd for child processes (Bert Belder)
+
+* Tab completion for readline (Trent Mick)
+
+* process.title getter/setter for OSX, Linux, Cygwin.
+ (Rasmus Andersson, Bert Belder)
+
+* Upgrade V8 to 2.3.6
+
+
+2010.08.04, Version 0.1.103, 0b925d075d359d03426f0b32bb58a5e05825b4ea
* Implement keep-alive for http.Client (Mikeal Rogers)
diff --git a/doc/api_header.html b/doc/api_header.html
index dd20a725c86..cc55733842a 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.103</div>
+ <div id="toctitle">Node v0.1.104</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 76c4d963e19..71cd0fd7925 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.08.04
- <a href="http://nodejs.org/dist/node-v0.1.103.tar.gz">node-v0.1.103.tar.gz</a>
+ 2010.08.13
+ <a href="http://nodejs.org/dist/node-v0.1.104.tar.gz">node-v0.1.104.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 5efdd3a7695..ca677baf244 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 103
+#define NODE_PATCH_VERSION 104
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)