diff --git a/AUTHORS b/AUTHORS
index fd81948b70..aeaa3df82f 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -161,3 +161,4 @@ Joe Walnes
Koichi Kobayashi
Daniel Gröber
Konstantin Käfer
+Richard Rodger
diff --git a/ChangeLog b/ChangeLog
index 11c29cd359..4b4b7a218a 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 797b121b0f..7ae6022187 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -20,7 +20,7 @@
Download
ChangeLog
About
- v0.4.0 docs
+ v0.4.1 docs
Wiki
@@ -90,9 +90,9 @@ net.createServer(function (socket) {
- 2011.02.10
- node-v0.4.0.tar.gz
- (Documentation)
+ 2011.02.19
+ node-v0.4.1.tar.gz
+ (Documentation)
Historical: versions, docs
diff --git a/src/node_version.h b/src/node_version.h
index f94feb2626..6b10128378 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 83beea5e97..de5ee45bce 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