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>2011-04-23 04:06:02 +0400
committerRyan Dahl <ry@tinyclouds.org>2011-04-23 04:06:25 +0400
commitc85455a954411b38232e79752d4abb61bb75031b (patch)
tree72c9e1ee837febd1e53d33b6cf3169ea42331815
parentc8e447ee63da9eb1d19141d8772f202edd4afe26 (diff)
bump version to v0.4.7v0.4.7
-rw-r--r--AUTHORS2
-rw-r--r--ChangeLog18
-rw-r--r--doc/index.html8
-rw-r--r--src/node_version.h2
-rw-r--r--wscript2
5 files changed, 26 insertions, 6 deletions
diff --git a/AUTHORS b/AUTHORS
index cf29f0189e4..6378303907b 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -170,4 +170,6 @@ Arnout Kazemier <info@3rd-Eden.com>
George Stagas <gstagas@gmail.com>
Scott McWhirter <scott.mcwhirter@joyent.com>
Jakub Lekstan <jakub.lekstan@dreamlab.pl>
+Tim Baumann <tim@timbaumann.info>
+Robert Mustacchi <rm@joyent.com>
diff --git a/ChangeLog b/ChangeLog
index bba5127ea3c..a0d54171cc0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,21 @@
+2011.04.22, Version 0.4.7 (stable)
+
+* Don't emit error on ECONNRESET from read() #670
+
+* Fix: Multiple pipes to the same stream were broken #929
+ (Felix Geisendörfer)
+
+* URL parsing/formatting corrections #954 (isaacs)
+
+* make it possible to do repl.start('', stream) (Wade Simmons)
+
+* Add os.loadavg for SunOS (Robert Mustacchi)
+
+* Fix timeouts with floating point numbers #897
+
+* Improve docs.
+
+
2011.04.13, Version 0.4.6 (stable)
* Don't error on ENOTCONN from shutdown() #670
diff --git a/doc/index.html b/doc/index.html
index d3c6b250c5e..1cf7e0e4b61 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -26,7 +26,7 @@
<li><a href="#download">Download</a></li>
<li><a href="https://github.com/joyent/node/raw/master/ChangeLog">ChangeLog</a></li>
<li><a href="#about">About</a></li>
- <li><a href="http://nodejs.org/docs/v0.4.6/api">v0.4.6 docs</a></li>
+ <li><a href="http://nodejs.org/docs/v0.4.7/api">v0.4.7 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>
@@ -107,9 +107,9 @@ server.listen(1337, "127.0.0.1");
</p>
<p>
- 2011.04.13
- <a href="http://nodejs.org/dist/node-v0.4.6.tar.gz">node-v0.4.6.tar.gz</a>
- (<a href="http://nodejs.org/docs/v0.4.6/api/index.html">Documentation</a>)
+ 2011.04.22
+ <a href="http://nodejs.org/dist/node-v0.4.7.tar.gz">node-v0.4.7.tar.gz</a>
+ (<a href="http://nodejs.org/docs/v0.4.7/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>
diff --git a/src/node_version.h b/src/node_version.h
index fdd27cb3de4..d5c81d21e34 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -28,7 +28,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 4
#define NODE_PATCH_VERSION 7
-#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 f8357c470db..a07fceeeab9 100644
--- a/wscript
+++ b/wscript
@@ -872,7 +872,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.6' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
+ , 'VERSION' : '0.4.7' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
}
return x