Bump to v0.5.0 v0.5.0
authorRyan Dahl <ry@tinyclouds.org>
Wed, 6 Jul 2011 00:41:24 +0000 (17:41 -0700)
committerRyan Dahl <ry@tinyclouds.org>
Wed, 6 Jul 2011 01:45:03 +0000 (18:45 -0700)
ChangeLog
doc/index.html
src/node_version.h
wscript

index 47c408e..03feee0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,58 @@
+2011.07.05, Version 0.5.0 (unstable)
+
+* New non-default libuv backend to support IOCP on Windows.
+  Use --use-uv to enable.
+
+* deprecate http.cat
+
+* docs improved.
+
+* add child_process.fork
+
+* add fs.utimes() and fs.futimes() support (Ben Noordhuis)
+
+* add process.uptime() (Tom Huges)
+
+* add path.relative (Tony Huang)
+
+* add os.getNetworkInterfaces()
+
+* add remoteAddress and remotePort for client TCP connections
+  (Brian White)
+
+* add secureOptions flag, setting ciphers,
+  SSL_OP_CRYPTOPRO_TLSEXT_BUG to TLS (Theo Schlossnagle)
+
+* add process.arch (Nathan Rajlich)
+
+* add reading/writing of floats and doubles from/to buffers (Brian White)
+
+* Allow script to be read from stdin
+
+* #477 add Buffer::fill method to do memset (Konstantin Käfer)
+
+* #573 Diffie-Hellman support to crypto module (Håvard Stranden)
+
+* #695 add 'hex' encoding to buffer (isaacs)
+
+* #851 Update how REPLServer uses contexts (Ben Weaver)
+
+* #853 add fs.lchow, fs.lchmod, fs.fchmod, fs.fchown (isaacs)
+
+* #889 Allow to remove all EventEmitter listeners at once
+  (Felix Geisendörfer)
+
+* #926 OpenSSL NPN support (Fedor Indutny)
+
+* #955 Change ^C handling in REPL (isaacs)
+
+* #979 add support for Unix Domain Sockets to HTTP (Mark Cavage)
+
+* #1173 #1170 add AMD, asynchronous module definition (isaacs)
+
+* DTrace probes: support X-Forwarded-For (Dave Pacheco)
+
+
 2011.06.29, Version 0.4.9 (stable)
 
 * Improve documentation
index 3146a4d..a3e21bc 100644 (file)
@@ -27,6 +27,7 @@
         <li><a href="https://github.com/joyent/node/raw/v0.4/ChangeLog">ChangeLog</a></li>
         <li><a href="#about">About</a></li>
         <li><a href="http://nodejs.org/docs/v0.4.9/api">v0.4.9 docs</a></li>
+        <li><a href="http://nodejs.org/docs/v0.5.0/api">v0.5.0 docs</a></li>
         <br/>
         <li><a href="https://github.com/joyent/node/wiki">Wiki</a></li>
         <li><a href="http://blog.nodejs.org/">Blog</a></li>
@@ -108,11 +109,18 @@ server.listen(1337, "127.0.0.1");
       </p>
 
       <p>
-        2011.06.29
+        2011.06.29 (stable)
         <a href="http://nodejs.org/dist/node-v0.4.9.tar.gz">node-v0.4.9.tar.gz</a>
         (<a href="http://nodejs.org/docs/v0.4.9/api/index.html">Documentation</a>)
       </p>
 
+      <p>
+        2011.07.05 (unstable)
+        <a href="http://nodejs.org/dist/node-v0.5.0.tar.gz">node-v0.5.0.tar.gz</a>
+        (<a href="http://nodejs.org/docs/v0.5.0/api/index.html">Documentation</a>)
+      </p>
+
+
       <p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
 
       <p>
index 56c0d63..db1f072 100644 (file)
@@ -28,7 +28,7 @@
 #define NODE_MAJOR_VERSION 0
 #define NODE_MINOR_VERSION 5
 #define NODE_PATCH_VERSION 0
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
 
 #ifndef NODE_STRINGIFY
 #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
diff --git a/wscript b/wscript
index cdc1c88..277d603 100644 (file)
--- a/wscript
+++ b/wscript
@@ -876,7 +876,7 @@ def build(bld):
         , 'CPPFLAGS'  : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
         , 'LIBFLAGS'  : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
         , 'PREFIX'    : safe_path(program.env["PREFIX"])
-        , 'VERSION'   : '0.4.9' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
+        , 'VERSION'   : '0.5.0' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
         }
     return x