Skip to content

Commit dc103ae

Browse files
committed
Bump version to v0.2.3
1 parent fea3919 commit dc103ae

File tree

5 files changed

+28
-9
lines changed

5 files changed

+28
-9
lines changed

AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,5 @@ Russell Haering <russellhaering@gmail.com>
121121
Bradley Meck <bradley.meck@gmail.com>
122122
Tobie Langel <tobie.langel@gmail.com>
123123
Tony Metzidis <tonym@tonym.us>
124+
Jorge Chamorro Bieling <jorge@jorgechamorro.com>
125+
Evan Larkin <evan.larkin.il.com>

ChangeLog

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
1-
2010.09.17, Version 0.2.2
1+
2010.10.02, Version 0.2.3
2+
3+
* Fix require in REPL (bug introduced in v0.2.2)
4+
5+
* Pass correct message in client HTTP upgrade event.
6+
(Fedor Indutny)
7+
8+
* Show function names in sys.inspect (Jorge Chamorro Bieling)
9+
10+
* In HTTP, close connection on the "connection:close" header.
11+
(Mikeal Rogers)
12+
13+
* fs.ReadStream bug fixes (Tj Holowaychuk, Evan Larkin, Marco Rogers)
14+
15+
* Fix zero length buffer bug for http res.end()
16+
17+
18+
2010.09.17, Version 0.2.2, 7bf46bc9808f4db98f1cf177d58a6ecf3a50b65d
219

320
* REPL improvements (Trent Mick)
421

@@ -27,7 +44,7 @@
2744

2845
* Fixes for NODE_MODULE_CONTEXTS=1 (Herbert Vojčík)
2946

30-
* Expose fingerproint from getPeerCertificate (Paul Querna)
47+
* Expose fingerproint from getPeerCertificate (Paul Querna)
3148

3249
* API: forceClose -> destroy for WriteStreams
3350

@@ -150,7 +167,7 @@
150167
* Upgrade http-parser, V8 to 2.2.21
151168

152169

153-
2010.06.21, Version 0.1.99, a620b7298f68f68a855306437a3b60b650d61d78
170+
2010.06.21, Version 0.1.99, a620b7298f68f68a855306437a3b60b650d61d78
154171

155172
* Datagram sockets (Paul Querna)
156173

@@ -256,7 +273,7 @@
256273

257274
2010.05.06, Version 0.1.94, f711d5343b29d1e72e87107315708e40951a7826
258275

259-
* Look in /usr/local/lib/node for modules, so that there's a way
276+
* Look in /usr/local/lib/node for modules, so that there's a way
260277
to install modules globally (Issac Schlueter)
261278

262279
* SSL improvements (Rhys Jones, Paulo Matias)
@@ -276,7 +293,7 @@
276293
* Bugfix: destroy() instead of end() http connection at end of
277294
pipeline
278295

279-
* Bugfix: http.Client may be prematurely released back to the
296+
* Bugfix: http.Client may be prematurely released back to the
280297
free pool. (Thomas Lee)
281298

282299
* Upgrade V8 to 2.2.8

doc/api_header.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ <h2 id="download">Download</h2>
8989
<a href="http://github.com/ry/node/tree/master">git repo</a>
9090
</p>
9191
<p>
92-
2010.09.17
93-
<a href="http://nodejs.org/dist/node-v0.2.2.tar.gz">node-v0.2.2.tar.gz</a>
92+
2010.10.02
93+
<a href="http://nodejs.org/dist/node-v0.2.3.tar.gz">node-v0.2.3.tar.gz</a>
9494
</p>
9595

9696
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#define NODE_MAJOR_VERSION 0
88
#define NODE_MINOR_VERSION 2
9-
#define NODE_PATCH_VERSION 2
9+
#define NODE_PATCH_VERSION 3
1010

1111
#ifndef NODE_STRINGIFY
1212
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)