bump version v0.1.29
authorRyan Dahl <ry@tinyclouds.org>
Wed, 17 Feb 2010 22:57:31 +0000 (14:57 -0800)
committerRyan Dahl <ry@tinyclouds.org>
Wed, 17 Feb 2010 23:12:42 +0000 (15:12 -0800)
ChangeLog
doc/api.txt
doc/index.html
wscript

index 00f11cca2adafdc4f6f66f259764ca959c86e0df..dcd6fd18acddd5e04d8d7d7967917f8e74127b3e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,45 @@
-2010.02.09, Version 0.1.28
+2010.02.17, Version 0.1.29
+
+  * Major API Changes
+    - Remove 'file' module
+    - require('posix') -----------------> require('fs')
+    - fs.cat ---------------------------> fs.readFile
+    - file.write -----------------------> fs.writeFile
+    - TCP 'receive' event --------------> 'data'
+    - TCP 'eof' event ------------------> 'end'
+    - TCP send() -----------------------> write()
+    - HTTP sendBody() ------------------> write()
+    - HTTP finish() --------------------> close()
+    - HTTP 'body' event ----------------> 'data'
+    - HTTP 'complete' event ------------> 'end'
+    - http.Client.prototype.close() (formerly finish()) no longer
+      takes an argument. Add the 'response' listener manually.
+    - Allow strings for the flag argument to fs.open
+      ("r", "r+", "w", "w+", "a", "a+")
+
+  * Added multiple arg support for sys.puts(), print(), etc.
+    (tj@vision-media.ca)
+
+  * sys.inspect(Date) now shows the date value (Mark Hansen)
+
+  * Calculate page size with getpagesize for armel (Jérémy Lal)
+
+  * Bugfix: stderr flushing.
+
+  * Bugfix: Promise late chain (Yuichiro MASUI)
+
+  * Bugfix: wait() on fired promises
+    (Felix Geisendörfer, Jonas Pfenniger)
+
+  * Bugfix: Use InstanceTemplate() instead of PrototypeTemplate() for
+    accessor methods. Was causing a crash with Eclipse debugger.
+    (Zoran Tomicic)
+
+  * Bugfix: Throw from connection.connect if resolving.
+    (Reported by James Golick)
+
+
+2010.02.09, Version 0.1.28, 49de41ef463292988ddacfb01a20543b963d9669
 
   * Use Google's jsmin.py which can be used for evil.
 
index 25f2f827065bf97b11b715362aa5dc73c00f1f51..45bdcc147a31a3f9c3dd4da61ff0b64dab491fd0 100644 (file)
@@ -1,7 +1,7 @@
 NODE(1)
 =======
 Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.28, 2010.02.09
+Version, 0.1.29, 2010.02.17
 
 
 == NAME
index c8fbb4320279d517b9d4e6d25fc596b625d77134..22ac939f3ac35a470719e76730ec52246b195a7a 100644 (file)
@@ -97,9 +97,8 @@ server.listen(7000, "localhost");</pre>
         <a href="http://github.com/ry/node/tree/master">git repo</a>
       </p>
       <p>
-        2010.02.09
-        <a
-        href="http://s3.amazonaws.com/four.livejournal/20100209/node-v0.1.28.tar.gz">node-v0.1.28.tar.gz</a>
+        2010.02.17
+        <a href="http://nodejs.org/dist/node-v0.1.29.tar.gz">node-v0.1.29.tar.gz</a>
       </p>
 
       <h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index 339d545f5b88c958034cdcc292ba5c1d66c19b44..153054cec9a55c9ae7a77637328d1a4570272523 100644 (file)
--- 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.28"
+VERSION="0.1.29"
 APPNAME="node.js"
 
 import js2c