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-02-20 05:45:34 +0300
committerRyan Dahl <ry@tinyclouds.org>2011-02-20 05:45:34 +0300
commite8aef84191bc2c1ba2bcaa54f30aabde7f03769b (patch)
tree3118c8a37812eb88a66ec32320a225cfd47e435b
parentc2a62951f64d5584d76fea5865e9bd94a898ed8b (diff)
Bump version to v0.4.1v0.4.1
-rw-r--r--AUTHORS1
-rw-r--r--ChangeLog32
-rw-r--r--doc/index.html8
-rw-r--r--src/node_version.h2
-rw-r--r--wscript2
5 files changed, 38 insertions, 7 deletions
diff --git a/AUTHORS b/AUTHORS
index fd81948b704..aeaa3df82f5 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -161,3 +161,4 @@ Joe Walnes <joe@walnes.com>
Koichi Kobayashi <koichik@improvement.jp>
Daniel Gröber <dxld@darkboxed.org>
Konstantin Käfer <github@kkaefer.com>
+Richard Rodger <richard@ricebridge.com>
diff --git a/ChangeLog b/ChangeLog
index 11c29cd3597..4b4b7a218a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,36 @@
+2011.02.19, Version 0.4.1 (stable)
+
+* Fixed field merging with progressive fields on writeHead()
+ (TJ Holowaychuk)
+
+* Make the repl respect node_modules folders (isaacs)
+
+* Fix for DNS fail in HTTP request (Richard Rodger)
+
+* Default to port 80 for http.request and http.get.
+
+* Improve V8 support for Cygwin (Bert Belder)
+
+* Fix fs.open param parsing. (Felix Geisendörfer)
+
+* Fixed null signal.
+
+* Fix various HTTP and HTTPS bugs
+
+* cmake improvements (Tom Hughes)
+
+* Fix: TLS sockets should not be writable after 'end'
+
+* Fix os.cpus() on cygwin (Brian White)
+
+* MinGW: OpenSSL support (Bert Belder)
+
+* Upgrade V8 to 3.1.5, libev to 4.4.
+
+
2011.02.10, Version 0.4.0 (stable)
-* require() improvements (isaacs)
+* require() improvements (isaacs)
- understand package.json (isaacs)
- look for 'node_modules' dir
diff --git a/doc/index.html b/doc/index.html
index 797b121b0fd..7ae60221873 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -20,7 +20,7 @@
<li><a href="#download">Download</a></li>
<li><a href="https://github.com/ry/node/raw/master/ChangeLog">ChangeLog</a></li>
<li><a href="#about">About</a></li>
- <li><a href="http://nodejs.org/docs/v0.4.0/api">v0.4.0 docs</a></li>
+ <li><a href="http://nodejs.org/docs/v0.4.1/api">v0.4.1 docs</a></li>
<br/>
<li><B><a href="https://github.com/ry/node/wiki">Wiki</a></B></li>
</ol>
@@ -90,9 +90,9 @@ net.createServer(function (socket) {
</p>
<p>
- 2011.02.10
- <a href="http://nodejs.org/dist/node-v0.4.0.tar.gz">node-v0.4.0.tar.gz</a>
- (<a href="http://nodejs.org/docs/v0.4.0/api/index.html">Documentation</a>)
+ 2011.02.19
+ <a href="http://nodejs.org/dist/node-v0.4.1.tar.gz">node-v0.4.1.tar.gz</a>
+ (<a href="http://nodejs.org/docs/v0.4.1/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 f94feb2626c..6b101283782 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -7,7 +7,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 4
#define NODE_PATCH_VERSION 1
-#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 83beea5e97b..de5ee45bce4 100644
--- a/wscript
+++ b/wscript
@@ -824,7 +824,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.0' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
+ , 'VERSION' : '0.4.1' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
}
return x