Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Jan 9, 2010
1 parent c9e2143 commit 39ca935
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 5 deletions.
27 changes: 26 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion doc/api.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ <h2 id="download">Download</h2>
<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>
Expand Down
2 changes: 1 addition & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 39ca935

Please sign in to comment.