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-01-09 13:11:54 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-01-09 13:11:54 +0300
commit39ca93549af91575ca9d4cbafd1e170fbcef3dfa (patch)
tree6adcc0cd3f357ec96f25d8eae753c150b8b64e63
parentc9e21435c02d07c052d02b1b1a55732fdbc880e2 (diff)
bump versionv0.1.25
-rw-r--r--ChangeLog27
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
4 files changed, 30 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index f53e2b80cdc..102a2cd996e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,29 @@
-2009.12.31, Version 0.1.24
+2010.01.09, Version 0.1.25
+
+ * sys.inspect() improvements (Tim Caswell)
+
+ * path module improvements (isaacs, Benjamin Thomas)
+
+ * API: request.uri -> request.url
+ It is no longer an object, but a string. The 'url' module
+ was addded to parse that string. That is, node no longer
+ parses the request URL automatically.
+
+ require('url').parse(request.url)
+
+ is roughly equivlent to the old request.uri object.
+ (isaacs)
+
+ * Bugfix: Several libeio related race conditions.
+
+ * Better errors for multipart library (Felix Geisendörfer)
+
+ * Bugfix: Update node-waf version to 1.5.10
+
+ * getmem for freebsd (Vanilla Hsu)
+
+
+2009.12.31, Version 0.1.24, 642c2773a7eb2034f597af1cd404b9e086b59632
* Bugfix: don't chunk responses to HTTP/1.0 clients, even if
they send Connection: Keep-Alive (e.g. wget)
diff --git a/doc/api.txt b/doc/api.txt
index 0a04451b9d6..40320bd593d 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.24, 2009.12.31
+Version, 0.1.25, 2010.01.09
== NAME
diff --git a/doc/index.html b/doc/index.html
index 3803b3cce6c..9f6fe21a705 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -97,9 +97,9 @@ server.listen(7000, "localhost");</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2009.12.31
+ 2010.01.09
<a
- href="http://s3.amazonaws.com/four.livejournal/20091231/node-v0.1.24.tar.gz">node-v0.1.24.tar.gz</a>
+ href="http://s3.amazonaws.com/four.livejournal/20100109/node-v0.1.25.tar.gz">node-v0.1.25.tar.gz</a>
</p>
<h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index 08bd591e168..12244427403 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.24"
+VERSION="0.1.25"
APPNAME="node.js"
import js2c