From: Ryan Dahl
Date: Sat, 23 Apr 2011 00:06:02 +0000 (-0700)
Subject: bump version to v0.4.7
X-Git-Tag: v0.4.7^0
X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c85455a954411b38232e79752d4abb61bb75031b;p=platform%2Fupstream%2Fnodejs.git
bump version to v0.4.7
---
diff --git a/AUTHORS b/AUTHORS
index cf29f01..6378303 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -170,4 +170,6 @@ Arnout Kazemier
George Stagas
Scott McWhirter
Jakub Lekstan
+Tim Baumann
+Robert Mustacchi
diff --git a/ChangeLog b/ChangeLog
index bba5127..a0d5417 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 GeisendoÌ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 d3c6b25..1cf7e0e 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -26,7 +26,7 @@
Download
ChangeLog
About
- v0.4.6 docs
+ v0.4.7 docs
Wiki
Blog
@@ -107,9 +107,9 @@ server.listen(1337, "127.0.0.1");
- 2011.04.13
- node-v0.4.6.tar.gz
- (Documentation)
+ 2011.04.22
+ node-v0.4.7.tar.gz
+ (Documentation)
Historical: versions, docs
diff --git a/src/node_version.h b/src/node_version.h
index fdd27cb..d5c81d2 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 f8357c4..a07fcee 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