Skip to content

Commit 39ca935

Browse files
committedJan 9, 2010
bump version
1 parent c9e2143 commit 39ca935

File tree

4 files changed

+30
-5
lines changed

4 files changed

+30
-5
lines changed
 

‎ChangeLog

+26-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
1-
2009.12.31, Version 0.1.24
1+
2010.01.09, Version 0.1.25
2+
3+
* sys.inspect() improvements (Tim Caswell)
4+
5+
* path module improvements (isaacs, Benjamin Thomas)
6+
7+
* API: request.uri -> request.url
8+
It is no longer an object, but a string. The 'url' module
9+
was addded to parse that string. That is, node no longer
10+
parses the request URL automatically.
11+
12+
require('url').parse(request.url)
13+
14+
is roughly equivlent to the old request.uri object.
15+
(isaacs)
16+
17+
* Bugfix: Several libeio related race conditions.
18+
19+
* Better errors for multipart library (Felix Geisendörfer)
20+
21+
* Bugfix: Update node-waf version to 1.5.10
22+
23+
* getmem for freebsd (Vanilla Hsu)
24+
25+
26+
2009.12.31, Version 0.1.24, 642c2773a7eb2034f597af1cd404b9e086b59632
227

328
* Bugfix: don't chunk responses to HTTP/1.0 clients, even if
429
they send Connection: Keep-Alive (e.g. wget)

‎doc/api.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
NODE(1)
22
=======
33
Ryan Dahl <ry@tinyclouds.org>
4-
Version, 0.1.24, 2009.12.31
4+
Version, 0.1.25, 2010.01.09
55

66

77
== NAME

‎doc/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ <h2 id="download">Download</h2>
9797
<a href="http://github.com/ry/node/tree/master">git repo</a>
9898
</p>
9999
<p>
100-
2009.12.31
100+
2010.01.09
101101
<a
102-
href="http://s3.amazonaws.com/four.livejournal/20091231/node-v0.1.24.tar.gz">node-v0.1.24.tar.gz</a>
102+
href="http://s3.amazonaws.com/four.livejournal/20100109/node-v0.1.25.tar.gz">node-v0.1.25.tar.gz</a>
103103
</p>
104104

105105
<h2 id="build">Build</h2>

‎wscript

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from os.path import join, dirname, abspath
77
from logging import fatal
88

99
cwd = os.getcwd()
10-
VERSION="0.1.24"
10+
VERSION="0.1.25"
1111
APPNAME="node.js"
1212

1313
import js2c

0 commit comments

Comments
 (0)
Please sign in to comment.