diff --git a/AUTHORS b/AUTHORS index cbfc647adcf..3391e804d7e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -94,3 +94,10 @@ Marshall Culpepper Ruben Rodriguez Dmitry Baranovskiy Blake Mizerany +Jerome Etienne +Dmitriy Shalashov +Adam Wiggins +Rick Olson +David Siegel +Сергей Крыжановский +Marco Rogers diff --git a/ChangeLog b/ChangeLog index 76d9b1c5acd..07fc952f0d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,25 @@ -2010.07.03, Version 0.1.100 +2010.07.16, Version 0.1.101 + +* Added env to child_process.exec (Сергей Крыжановский) + +* Allow modules to optionally be loaded in separate contexts + with env var NODE_MODULE_CONTEXTS=1. + +* setTTL and setBroadcast for dgram (Matt Ranney) + +* Use execPath for default NODE_PATH, not installPrefix + (Isaac Schlueter) + +* Support of console.dir + console.assert (Jerome Etienne) + +* on() as alias to addListener() + +* Use javascript port of Ronn to build docs (Jérémy Lal) + +* Upgrade V8 to 2.3.0 + + +2010.07.03, Version 0.1.100, a6b8586e947f9c3ced180fe68c233d0c252add8b * process.execPath (Marshall Culpepper) diff --git a/doc/api_header.html b/doc/api_header.html index 7414bd91f05..9146c934910 100644 --- a/doc/api_header.html +++ b/doc/api_header.html @@ -295,7 +295,7 @@
-
Node v0.1.100
+
Node v0.1.101
diff --git a/doc/index.html b/doc/index.html index 3582a7f8146..fa316880e23 100644 --- a/doc/index.html +++ b/doc/index.html @@ -89,8 +89,8 @@

Download

git repo

- 2010.07.03 - node-v0.1.100.tar.gz + 2010.07.16 + node-v0.1.101.tar.gz

Historical: versions, docs

diff --git a/src/node_version.h b/src/node_version.h index 3b0fce808ab..8aa03b46538 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 100 +#define NODE_PATCH_VERSION 101 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)