summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-07-03 08:34:15 +0200
committerRyan Dahl <ry@tinyclouds.org>2010-07-03 08:37:46 +0200
commita6b8586e947f9c3ced180fe68c233d0c252add8b (patch)
treef49877cf79f3d19f8131e1ecd8851aff68d484f4
parent2072925f121fe8785dfd046eba24f8d18c59ae75 (diff)
downloadnode-new-a6b8586e947f9c3ced180fe68c233d0c252add8b.tar.gz
bump versionv0.1.100
-rw-r--r--AUTHORS4
-rw-r--r--ChangeLog21
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
5 files changed, 28 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index b757c4c30e..cbfc647adc 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -90,3 +90,7 @@ Paul Querna <pquerna@apache.org>
Ben Lowery <ben@blowery.org>
Peter Dekkers <soderblom.peter@gmail.com>
David Siegel <david@artcom.de>
+Marshall Culpepper <marshall.law@gmail.com>
+Ruben Rodriguez <cha0s@therealcha0s.net>
+Dmitry Baranovskiy <Dmitry@Baranovskiy.com>
+Blake Mizerany <blake.mizerany@gmail.com>
diff --git a/ChangeLog b/ChangeLog
index eac9e8057d..76d9b1c5ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,23 @@
-2010.06.21, Version 0.1.99
+2010.07.03, Version 0.1.100
+
+* process.execPath (Marshall Culpepper)
+
+* sys.pump (Mikeal Rogers)
+
+* Remove ini and mjsunit libraries.
+
+* Introduce console.log() and friends.
+
+* Switch order of arguments for Buffer.write (Blake Mizerany)
+
+* On overlapping buffers use memmove (Matt Ranney)
+
+* Resolve .local domains with getaddrinfo()
+
+* Upgrade http-parser, V8 to 2.2.21
+
+
+2010.06.21, Version 0.1.99, a620b7298f68f68a855306437a3b60b650d61d78
* Datagram sockets (Paul Querna)
diff --git a/doc/api_header.html b/doc/api_header.html
index cf74f9f91a..1b989fe571 100644
--- a/doc/api_header.html
+++ b/doc/api_header.html
@@ -295,7 +295,7 @@
<body>
<div id="toc">
- <div id="toctitle">Node v0.1.99</div>
+ <div id="toctitle">Node v0.1.100</div>
<noscript>JavaScript must be enabled in your browser to display the table of contents.</noscript>
</div>
<div id='man'>
diff --git a/doc/index.html b/doc/index.html
index 80ccb0452b..7a6f935e87 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -91,8 +91,8 @@ net.createServer(function (socket) {
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2010.06.21
- <a href="http://nodejs.org/dist/node-v0.1.99.tar.gz">node-v0.1.99.tar.gz</a>
+ 2010.07.03
+ <a href="http://nodejs.org/dist/node-v0.1.100.tar.gz">node-v0.1.100.tar.gz</a>
</p>
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
diff --git a/wscript b/wscript
index b6f8380696..8cb3cb48e0 100644
--- a/wscript
+++ b/wscript
@@ -7,7 +7,7 @@ from os.path import join, dirname, abspath
from logging import fatal
cwd = os.getcwd()
-VERSION="0.1.99"
+VERSION="0.1.100"
APPNAME="node.js"
import js2c