bump version v0.1.8
authorRyan <ry@tinyclouds.org>
Fri, 4 Sep 2009 10:35:30 +0000 (12:35 +0200)
committerRyan <ry@tinyclouds.org>
Fri, 4 Sep 2009 10:35:30 +0000 (12:35 +0200)
ChangeLog
website/api.txt
website/index.html
wscript

index c9d2b74..feed641 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,24 @@
-2009.08.27, Version 0.1.7
+2009.09.04, Version 0.1.8
+
+  * Feature: External modules
+
+  * Feature: setTimeout() for node.tcp.Connection
+
+  * Feature: add node.cwd(), node.fs.readdir(), node.fs.mkdir()
+
+  * Bugfix: promise.wait() releasing out of order.
+
+  * Bugfix: Asyncly do getaddrinfo() on Apple.
+
+  * Disable useless evcom error messages.
+
+  * Better stack traces.
+
+  * Built natively on x64.
+
+  * Upgrade v8 to 1.3.9
+
+2009.08.27, Version 0.1.7, f7acef9acf8ba8433d697ad5ed99d2e857387e4b
 
   * Feature: global 'process' object. Emits "exit".
 
 
   * Feature: node.stdio
 
-  * Feature: EventEmitters emit "newListener" when listeners are added
+  * Feature: EventEmitters emit "newListener" when listeners are
+    added
 
-  * API:  Use flat object instead of array-of-arrays for HTTP headers.
+  * API:  Use flat object instead of array-of-arrays for HTTP
+    headers.
 
   * API: Remove buffered file object (node.File)
 
-  * API: require(), include() are synchronous. (Uses continuations.)
+  * API: require(), include() are synchronous. (Uses
+    continuations.)
 
   * API: Deprecate onLoad and onExit.
 
 
   * Move EventEmitter.prototype.emit() completely into C++.
 
-  * Bugfix: Fix memory leak in event emitters. 
+  * Bugfix: Fix memory leak in event emitters.
     http://groups.google.com/group/nodejs/browse_thread/thread/a8d1dfc2fd57a6d1
 
   * Bugfix: Had problems reading scripts with non-ascii characters.
 
   * Bugfix: Sockets not properly reattached if reconnected during
     disconnect event.
-  
+
   * Bugfix: Server-side clients not attached between creation and
     on_connect.
 
   * Update documentation, use asciidoc.
 
   * EventEmitter and Promise interfaces. (Breaks previous API.)
-  
+
   * Remove node.Process constructor in favor of node.createProcess
 
   * Add -m32 flags for compiling on x64 platforms.
     (Thanks to András Bártházi)
 
   * Upgrade v8 to 1.2.10 and libev to 3.6
-  
+
   * Bugfix: Timer::RepeatSetter wasn't working.
 
-  * Bugfix: Spawning many processes in a loop 
+  * Bugfix: Spawning many processes in a loop
     (reported by Felix Geisendörfer)
 
 
index 01890c5..b877a37 100644 (file)
@@ -1,7 +1,7 @@
 NODE(1)
 =======
 Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.7, 2009.08.27
+Version, 0.1.8, 2009.09.04
 
 
 == Name
index 20bb30f..eee8fd1 100644 (file)
@@ -155,8 +155,8 @@ Server running at http://127.0.0.1:8000/</pre>
         <a href="http://github.com/ry/node/tree/master">git repo</a>
       </p>
       <p>
-        2009.08.27
-        <a href="http://s3.amazonaws.com/four.livejournal/20090827/node-0.1.7.tar.gz">node-0.1.7.tar.gz</a>
+        2009.09.04
+        <a href="http://s3.amazonaws.com/four.livejournal/20090904/node-0.1.8.tar.gz">node-0.1.8.tar.gz</a>
       </p>
 
       <h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index 99600b4..ad85f04 100644 (file)
--- a/wscript
+++ b/wscript
@@ -6,7 +6,7 @@ import sys, os, shutil
 from os.path import join, dirname, abspath
 from logging import fatal
 
-VERSION="0.1.7"
+VERSION="0.1.8"
 APPNAME="node.js"
 
 import js2c