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>2009-11-03 15:48:02 +0300
committerRyan Dahl <ry@tinyclouds.org>2009-11-03 15:48:02 +0300
commit726865af7bbafe58435986f4a193ff11c84e4bfe (patch)
tree6a8b3833c4e5ad565b9e0ccffa1df1a5164cc4cf
parentb3b3cfe007f79a019a76dc0d35e9e77504d3e835 (diff)
bump versionv0.1.16
-rw-r--r--ChangeLog28
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
4 files changed, 31 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index a4240e7133e..55994baddb0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,29 @@
-2009.10.28, Version 0.1.15
+2009.11.03, Version 0.1.16
+
+ * API: Use CommonJS-style module requiring
+ - require("/sys.js") becomes require("sys")
+ - require("circle.js") becomes require("./circle")
+ - process.path.join() becomes require("path").join()
+ - __module becomes module
+
+ * API: Many namespacing changes
+ - Move node.* into process.*
+ - Move node.dns into module "dns"
+ - Move node.fs into module "posix"
+ - process is no longer the global object. GLOBAL is.
+
+ For more information on the API changes see:
+ http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/6
+ http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/14
+
+ * Feature: process.platform, process.memoryUsage()
+
+ * Feature: promise.cancel() (Felix Geisendörfer)
+
+ * Upgrade V8 to 1.3.18
+
+
+2009.10.28, Version 0.1.15, eca2de73ed786b935507fd1c6faccd8df9938fd3
* Many build system fixes (esp. for OSX users)
@@ -17,6 +42,7 @@
* Upgrade v8 to 1.3.16
+
2009.10.09, Version 0.1.14, b12c809bb84d1265b6a4d970a5b54ee8a4890513
* Feature: Improved addon builds with node-waf
diff --git a/doc/api.txt b/doc/api.txt
index d577546c5a6..dd3f82bcb97 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.15, 2009.10.28
+Version, 0.1.16, 2009.11.03
== NAME
diff --git a/doc/index.html b/doc/index.html
index c462279fefe..9bbd7c9a386 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -97,8 +97,8 @@ server.listen(7000, "localhost");</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2009.10.09
- <a href="http://s3.amazonaws.com/four.livejournal/20091028/node-v0.1.15.tar.gz">node-v0.1.15.tar.gz</a>
+ 2009.11.03
+ <a href="http://s3.amazonaws.com/four.livejournal/20091103/node-v0.1.16.tar.gz">node-v0.1.16.tar.gz</a>
</p>
<h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index dc7f61f0302..b8a4a4efd6d 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.15"
+VERSION="0.1.16"
APPNAME="node.js"
import js2c