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-03-19 00:20:37 +0300
committerRyan Dahl <ry@tinyclouds.org>2011-03-19 00:25:20 +0300
commitc095ce1a1b41ca015758a713283bf1f0bd41e4c4 (patch)
tree5e92504dc934ed2012d0390c97f52fe3da6b7960
parent5b161b09a35db4f01e7544eb0c64ada749d719d4 (diff)
bump version to v0.4.3v0.4.3
-rw-r--r--AUTHORS2
-rw-r--r--ChangeLog27
-rw-r--r--doc/index.html8
-rw-r--r--src/node_version.h2
-rw-r--r--wscript2
5 files changed, 34 insertions, 7 deletions
diff --git a/AUTHORS b/AUTHORS
index aeaa3df82f5..35d6f0b7312 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -162,3 +162,5 @@ Koichi Kobayashi <koichik@improvement.jp>
Daniel Gröber <dxld@darkboxed.org>
Konstantin Käfer <github@kkaefer.com>
Richard Rodger <richard@ricebridge.com>
+Andreas Reich <andreas@reich.name>
+Dean McNamee <dean@gmail.com>
diff --git a/ChangeLog b/ChangeLog
index eb82394b757..460c53dc630 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,29 @@
-2011.03.02, Version 0.4.2 (stable)
+2011.03.18, Version 0.4.3 (stable)
+
+* Don't decrease server connection counter again if destroy() is called more
+ than once GH-431 (Andreas Reich, Anders Conbere)
+
+* Documentation improvements (koichik)
+
+* Fix bug with setMaxListeners GH-682
+
+* Start up memory footprint improvement. (Tom Hughes)
+
+* Solaris improvements.
+
+* Buffer::Length(Buffer*) should not invoke itself recursively GH-759 (Ben
+ Noordhuis)
+
+* TLS: Advertise support for client certs GH-774 (Theo Schlossnagle)
+
+* HTTP Agent bugs: GH-787, GH-784, GH-803.
+
+* Don't call GetMemoryUsage every 5 seconds.
+
+* Upgrade V8 to 3.1.8.3
+
+
+2011.03.02, Version 0.4.2 (stable), 39280e1b5731f3fcd8cc42ad41b86cdfdcb6d58b
* Improve docs.
diff --git a/doc/index.html b/doc/index.html
index c1e52eb245c..93a74a7a969 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -24,7 +24,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.2/api">v0.4.2 docs</a></li>
+ <li><a href="http://nodejs.org/docs/v0.4.3/api">v0.4.3 docs</a></li>
<br/>
<li><B><a href="https://github.com/joyent/node/wiki">Wiki</a></B></li>
<li><B><a href="http://blog.nodejs.org/">Blog</a></B></li>
@@ -96,9 +96,9 @@ server.listen(8124, "127.0.0.1");
</p>
<p>
- 2011.03.02
- <a href="http://nodejs.org/dist/node-v0.4.2.tar.gz">node-v0.4.2.tar.gz</a>
- (<a href="http://nodejs.org/docs/v0.4.2/api/index.html">Documentation</a>)
+ 2011.03.18
+ <a href="http://nodejs.org/dist/node-v0.4.3.tar.gz">node-v0.4.3.tar.gz</a>
+ (<a href="http://nodejs.org/docs/v0.4.3/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 e5c68d20dde..c2ce6555e53 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 3
-#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 b0056670e56..919476c4ffe 100644
--- a/wscript
+++ b/wscript
@@ -868,7 +868,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.2' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
+ , 'VERSION' : '0.4.3' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
}
return x