Skip to content

Commit 87d5e5b

Browse files
committed
bump version
1 parent 217b60a commit 87d5e5b

File tree

4 files changed

+46
-6
lines changed

4 files changed

+46
-6
lines changed

ChangeLog

+42-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,45 @@
1-
2010.02.09, Version 0.1.28
1+
2010.02.17, Version 0.1.29
2+
3+
* Major API Changes
4+
- Remove 'file' module
5+
- require('posix') -----------------> require('fs')
6+
- fs.cat ---------------------------> fs.readFile
7+
- file.write -----------------------> fs.writeFile
8+
- TCP 'receive' event --------------> 'data'
9+
- TCP 'eof' event ------------------> 'end'
10+
- TCP send() -----------------------> write()
11+
- HTTP sendBody() ------------------> write()
12+
- HTTP finish() --------------------> close()
13+
- HTTP 'body' event ----------------> 'data'
14+
- HTTP 'complete' event ------------> 'end'
15+
- http.Client.prototype.close() (formerly finish()) no longer
16+
takes an argument. Add the 'response' listener manually.
17+
- Allow strings for the flag argument to fs.open
18+
("r", "r+", "w", "w+", "a", "a+")
19+
20+
* Added multiple arg support for sys.puts(), print(), etc.
21+
(tj@vision-media.ca)
22+
23+
* sys.inspect(Date) now shows the date value (Mark Hansen)
24+
25+
* Calculate page size with getpagesize for armel (Jérémy Lal)
26+
27+
* Bugfix: stderr flushing.
28+
29+
* Bugfix: Promise late chain (Yuichiro MASUI)
30+
31+
* Bugfix: wait() on fired promises
32+
(Felix Geisendörfer, Jonas Pfenniger)
33+
34+
* Bugfix: Use InstanceTemplate() instead of PrototypeTemplate() for
35+
accessor methods. Was causing a crash with Eclipse debugger.
36+
(Zoran Tomicic)
37+
38+
* Bugfix: Throw from connection.connect if resolving.
39+
(Reported by James Golick)
40+
41+
42+
2010.02.09, Version 0.1.28, 49de41ef463292988ddacfb01a20543b963d9669
243

344
* Use Google's jsmin.py which can be used for evil.
445

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.28, 2010.02.09
4+
Version, 0.1.29, 2010.02.17
55

66

77
== NAME

doc/index.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,8 @@ <h2 id="download">Download</h2>
9797
<a href="http://github.com/ry/node/tree/master">git repo</a>
9898
</p>
9999
<p>
100-
2010.02.09
101-
<a
102-
href="http://s3.amazonaws.com/four.livejournal/20100209/node-v0.1.28.tar.gz">node-v0.1.28.tar.gz</a>
100+
2010.02.17
101+
<a href="http://nodejs.org/dist/node-v0.1.29.tar.gz">node-v0.1.29.tar.gz</a>
103102
</p>
104103

105104
<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.28"
10+
VERSION="0.1.29"
1111
APPNAME="node.js"
1212

1313
import js2c

0 commit comments

Comments
 (0)