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>2010-07-26 10:39:58 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-07-26 10:39:58 +0400
commit2a4568c85f33869c75ff43ccd30f0ec188b43eab (patch)
treed98c97dfb14f8ae986f30719000d76bc1de6fc83
parent402bcb83bc9455e066ec47a2dae7a21219b1e040 (diff)
bump versionv0.1.102
-rw-r--r--AUTHORS6
-rw-r--r--ChangeLog23
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html4
-rw-r--r--src/node_version.h2
5 files changed, 32 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index 3391e804d7e..bddc77e45ae 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -101,3 +101,9 @@ Rick Olson <technoweenie@gmail.com>
David Siegel <david.siegel@artcom.de>
Сергей Крыжановский <another@dhcp199-223-red.yandex.net>
Marco Rogers <marco.rogers@gmail.com>
+Benjamin Fritsch <beanie@benle.de>
+Jan Kassens <jan@kassens.net>
+Robert Keizer <root@black.bluerack.ca>
+Sam Shull <brickysam26@gmail.com>
+Chandra Sekar S <chandru.in@gmail.com>
+Andrew Naylor <argon@mkbot.net>
diff --git a/ChangeLog b/ChangeLog
index 07fc952f0d8..af831b65ef1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,25 @@
-2010.07.16, Version 0.1.101
+2010.07.25, Version 0.1.102
+
+* base64 encoding for Buffers.
+
+* Buffer support for Cipher, Decipher, Hmac, Sign and Verify
+ (Andrew Naylor)
+
+* Support for reading byte ranges from files using fs.createReadStream.
+ (Chandra Sekar)
+
+* Fix Buffer.toString() on 0-length slices. (Peter Griess)
+
+* Cache modules based on filename rather than ID (Isaac Schlueter)
+
+* querystring improvments (Jan Kassens, Micheil Smith)
+
+* Support DEL in the REPL. (Jérémy Lal)
+
+* Upgrade http-parser, upgrade V8 to 2.3.2
+
+
+2010.07.16, Version 0.1.101, 0174ceb6b24caa0bdfc523934c56af9600fa9b58
* Added env to child_process.exec (Сергей Крыжановский)
diff --git a/doc/api_header.html b/doc/api_header.html
index 9146c934910..61d4798e827 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.101</div>
+ <div id="toctitle">Node v0.1.102</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 fa316880e23..041e63ca578 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -89,8 +89,8 @@ net.createServer(function (socket) {
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2010.07.16
- <a href="http://nodejs.org/dist/node-v0.1.101.tar.gz">node-v0.1.101.tar.gz</a>
+ 2010.07.25
+ <a href="http://nodejs.org/dist/node-v0.1.102.tar.gz">node-v0.1.102.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/src/node_version.h b/src/node_version.h
index 02afec553f0..c4b98e3dd85 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -6,7 +6,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 1
-#define NODE_PATCH_VERSION 101
+#define NODE_PATCH_VERSION 102
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)