bump version v0.1.92
authorRyan Dahl <ry@tinyclouds.org>
Fri, 23 Apr 2010 23:05:19 +0000 (16:05 -0700)
committerRyan Dahl <ry@tinyclouds.org>
Fri, 23 Apr 2010 23:37:14 +0000 (16:37 -0700)
AUTHORS
ChangeLog
doc/api_header.html
doc/index.html
wscript

diff --git a/AUTHORS b/AUTHORS
index f6199ec..435e7a4 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -63,3 +63,6 @@ Herbert Vojčík <herby@mailbox.sk>
 Krishna Rajendran <krishna@emptybox.org>
 pyrotechnick <pyrotechnick@feistystudios.com>
 Carson McDonald <carson@ioncannon.net>
+Julian Lamb <thepurlieu@gmail.com>
+Brian Hammond <brian@fictorial.com>
+Mathias Pettersson <mape@mape.me>
index d36033a..ef0086c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,20 @@
-2010.04.15, Version 0.1.91
+2010.04.23, Version 0.1.92
+
+  * OpenSSL support. Still undocumented (see tests). (Rhys Jones)
+
+  * API: Unhandled 'error' events throw.
+
+  * Script class with eval-function-family in binding('evals') plus tests.
+    (Herbert Vojcik)
+
+  * stream.setKeepAlive (Julian Lamb)
+
+  * Bugfix: Force no body on http 204 and 304
+
+  * Upgrade Waf to 1.5.16, V8 to 2.2.4.2
+
+
+2010.04.15, Version 0.1.91, 311d7dee19034ff1c6bc9098c36973b8d687eaba
 
   * Add incoming.httpVersion
 
 
   * REPL can be run from multiple different streams. (Matt Ranney)
 
-  * After V8 heap is compact, don't use a timer every 2 seconds. 
+  * After V8 heap is compact, don't use a timer every 2 seconds.
 
-  * Improve nextTick implementation. 
+  * Improve nextTick implementation.
 
   * Add primative support for Upgrading HTTP connections.
-    (See commit log for docs 760bba5) 
+    (See commit log for docs 760bba5)
 
   * Add timeout and maxBuffer options to child_process.exec
 
 
   * Bugfix: correctly check kqueue and epoll. (Rasmus Andersson)
 
-  * Upgrade WAF to 1.5.10 
+  * Upgrade WAF to 1.5.10
 
   * Bugfix: posix.statSync() was crashing
 
     - __module becomes module
 
   * API: Many namespacing changes
-    - Move node.* into process.* 
+    - Move node.* into process.*
     - Move node.dns into module "dns"
     - Move node.fs into module "posix"
     - process is no longer the global object. GLOBAL is.
 
-  For more information on the API changes see: 
+  For more information on the API changes see:
     http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/6
     http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/14
 
 
   * Feature: Multipart stream parser (Felix Geisendörfer)
 
-  * API: Move node.puts(), node.exec() and others to /utils.js 
+  * API: Move node.puts(), node.exec() and others to /utils.js
 
   * API: Move http, tcp libraries to /http.js and /tcp.js
 
     whole files at once.
 
 
-2009.09.24, Version 0.1.12, 2f56ccb45e87510de712f56705598b3b4e3548ec 
+2009.09.24, Version 0.1.12, 2f56ccb45e87510de712f56705598b3b4e3548ec
 
   * Feature: System modules, node.libraryPaths
 
 
   * API: default to utf8 encoding for node.fs.cat()
 
-  * API: add node.exec() 
+  * API: add node.exec()
 
   * API: node.fs.read() takes a normal encoding parameter.
 
index ba147a3..30304ca 100644 (file)
 <body>
 
 <div id="toc">
-       <div id="toctitle">Node v0.1.91</div>
+       <div id="toctitle">Node v0.1.92</div>
        <noscript>JavaScript must be enabled in your browser to display the table of contents.</noscript>
 </div>
 <div id='man'>
 
   <li class='tc'></li>
   <li class='tr'>node(1)</li>
-</ol>
\ No newline at end of file
+</ol>
index 9459d46..54db14b 100644 (file)
@@ -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.15
-        <a href="http://nodejs.org/dist/node-v0.1.91.tar.gz">node-v0.1.91.tar.gz</a>
+        2010.04.23
+        <a href="http://nodejs.org/dist/node-v0.1.92.tar.gz">node-v0.1.92.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/wscript b/wscript
index 2a76e92..d6ea5dd 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.91"
+VERSION="0.1.92"
 APPNAME="node.js"
 
 import js2c