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-04-15 12:54:20 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-04-15 13:09:51 +0400
commit311d7dee19034ff1c6bc9098c36973b8d687eaba (patch)
tree97715d5a3a02a201b05d51ff6f2a8374feeb9d02
parent2ad587cc354e2694bc47be01eca9b15b6db46377 (diff)
bump versionv0.1.91
-rw-r--r--ChangeLog24
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
4 files changed, 27 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 9eef860976d..d36033a8cbe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,26 @@
-2010.04.09, Version 0.1.90
+2010.04.15, Version 0.1.91
+
+ * Add incoming.httpVersion
+
+ * Object.prototype problem with C-Ares binding
+
+ * REPL can be run from multiple different streams. (Matt Ranney)
+
+ * After V8 heap is compact, don't use a timer every 2 seconds.
+
+ * Improve nextTick implementation.
+
+ * Add primative support for Upgrading HTTP connections.
+ (See commit log for docs 760bba5)
+
+ * Add timeout and maxBuffer options to child_process.exec
+
+ * Fix bugs.
+
+ * Upgrade V8 to 2.2.3.1
+
+
+2010.04.09, Version 0.1.90, 07e64d45ffa1856e824c4fa6afd0442ba61d6fd8
* Merge writing of networking system (net2)
- New Buffer object for binary data.
diff --git a/doc/api_header.html b/doc/api_header.html
index 498bc9ebd3a..7340bdbbde8 100644
--- a/doc/api_header.html
+++ b/doc/api_header.html
@@ -130,7 +130,7 @@
</head>
<body>
<div id="toc">
- <div id="toctitle">Node v0.1.90</div>
+ <div id="toctitle">Node v0.1.91</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 e9c96c94935..338798cbf83 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -95,8 +95,8 @@ server.listen(7000, "localhost");</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2010.04.09
- <a href="http://nodejs.org/dist/node-v0.1.90.tar.gz">node-v0.1.90.tar.gz</a>
+ 2010.04.15
+ <a href="http://nodejs.org/dist/node-v0.1.91.tar.gz">node-v0.1.91.tar.gz</a>
</p>
<h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index bafc139f4e4..e04b68515c6 100644
--- a/wscript
+++ b/wscript
@@ -7,7 +7,7 @@ from os.path import join, dirname, abspath
from logging import fatal
cwd = os.getcwd()
-VERSION="0.1.90"
+VERSION="0.1.91"
APPNAME="node.js"
import js2c