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-02-22 10:31:08 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-02-22 12:31:14 +0300
commitbb0d1e65e1671aaeb21fac186b066701da0bc33b (patch)
treefa3a891ff56c4cff77f2bfb2394001e881cfdaed
parent6ee0bf704a30281e5782fa2255cbce053bc2c51b (diff)
bump versionv0.1.30
-rw-r--r--ChangeLog43
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
4 files changed, 46 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index dcd6fd18acd..5389c3c2833 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,45 @@
-2010.02.17, Version 0.1.29
+2010.02.22, Version 0.1.30
+
+ * Major API Changes
+
+ - Promises removed. See
+ http://groups.google.com/group/nodejs/msg/426f3071f3eec16b
+ http://groups.google.com/group/nodejs/msg/df199d233ff17efa
+ The API for fs was
+
+ fs.readdir("/usr").addCallback(function (files) {
+ puts("/usr files: " + files);
+ });
+
+ It is now
+
+ fs.readdir("/usr", function (err, files) {
+ if (err) throw err;
+ puts("/usr files: " + files);
+ });
+
+ - Synchronous fs operations exposed, use with care.
+
+ - tcp.Connection.prototype.readPause() and readResume()
+ renamed to pause() and resume()
+
+ - http.ServerResponse.prototype.sendHeader() renamed to
+ writeHeader(). Now accepts reasonPhrase.
+
+ * Compact garbage on idle.
+
+ * Configurable debug ports, and --debug-brk (Zoran Tomicic)
+
+ * Better command line option parsing (Jeremy Ashkenas)
+
+ * Add fs.chmod (Micheil Smith), fs.lstat (Isaac Z. Schlueter)
+
+ * Fixes to process.mixin (Rasmus Andersson, Benjamin Thomas)
+
+ * Upgrade V8 to 2.1.1
+
+
+2010.02.17, Version 0.1.29, 87d5e5b316a4276bcf881f176971c1a237dcdc7a
* Major API Changes
- Remove 'file' module
diff --git a/doc/api.txt b/doc/api.txt
index a69d73c0294..942058f1999 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.29, 2010.02.17
+Version, 0.1.30, 2010.02.22
== NAME
diff --git a/doc/index.html b/doc/index.html
index 2566cd17886..b471e8c3663 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -98,8 +98,8 @@ server.listen(7000, "localhost");</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2010.02.17
- <a href="http://nodejs.org/dist/node-v0.1.29.tar.gz">node-v0.1.29.tar.gz</a>
+ 2010.02.22
+ <a href="http://nodejs.org/dist/node-v0.1.30.tar.gz">node-v0.1.30.tar.gz</a>
</p>
<h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index 153054cec9a..db456b838a3 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.29"
+VERSION="0.1.30"
APPNAME="node.js"
import js2c