Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d8579c6

Browse filesBrowse files
committed
Bump version to v0.3.7
1 parent 2863892 commit d8579c6
Copy full SHA for d8579c6

File tree

Expand file treeCollapse file tree

5 files changed

+46
-8
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

5 files changed

+46
-8
lines changed
Open diff view settings
Collapse file

‎AUTHORS‎

Copy file name to clipboardExpand all lines: AUTHORS
+5-1Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,4 +152,8 @@ Theo Schlossnagle <jesus@omniti.com>
152152
Kai Chen <kaichenxyz@gmail.com>
153153
Daniel C <333222@gmail.com>
154154
Mihai Călin Bazon <mihai@bazon.net>
155-
155+
Ali Farhadi <a.farhadi@gmail.com>
156+
Daniel Ennis <aikar@aikar.co>
157+
Carter Allen <CarterA@opt-6.com>
158+
Greg Hughes <greg@ghughes.com>
159+
David Trejo <david.daniel.trejo@gmail.com>
Collapse file

‎ChangeLog‎

Copy file name to clipboardExpand all lines: ChangeLog
+35-1Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,38 @@
1-
2011.01.21, Version 0.3.6 (unstable)
1+
2011.01.27, Version 0.3.7 (unstable)
2+
3+
* Expose agent in http and https client. (Mikeal Rogers)
4+
5+
* Fix bug in http request's end method. (Ali Farhadi)
6+
7+
* MinGW: better net support (Bert Belder)
8+
9+
* fs.open should set FD_CLOEXEC
10+
11+
* DTrace probes (Bryan Cantrill)
12+
13+
* REPL fixes and improvements (isaacs, Bert Belder)
14+
15+
* Fix many bugs with legacy http.Client interface
16+
17+
* Deprecate process.assert. Use require('assert').ok
18+
19+
* Add callback parameter to socket.setTimeout(). (Ali Farhadi)
20+
21+
* Fixing bug in http request default encoding (Ali Farhadi)
22+
23+
* require: A module ID with a trailing slash must be a dir.
24+
(isaacs)
25+
26+
* Add ext_key_usage to getPeerCertificate (Greg Hughes)
27+
28+
* Error when child_process.exec hits maxBuffer.
29+
30+
* Fix option parsing in tls.connect()
31+
32+
* Upgrade to V8 3.0.10
33+
34+
35+
2011.01.21, Version 0.3.6 (unstable), bb3e71466e5240626d9d21cf791fe43e87d90011
236

337
* REPL and other improvements on MinGW (Bert Belder)
438

Collapse file

‎doc/index.html‎

Copy file name to clipboardExpand all lines: doc/index.html
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<li><a href="#download">Download</a></li>
2121
<li><a href="https://github.com/ry/node/raw/master/ChangeLog">ChangeLog</a></li>
2222
<li><a href="#about">About</a></li>
23-
<li><a href="http://nodejs.org/docs/v0.3.6/api">v0.3.6 docs</a></li>
23+
<li><a href="http://nodejs.org/docs/v0.3.7/api">v0.3.7 docs</a></li>
2424
<li><a href="http://nodejs.org/docs/v0.2.6/api.html">v0.2.6 docs</a></li>
2525
<br/>
2626
<li><B><a href="https://github.com/ry/node/wiki">Wiki</a></B></li>
@@ -96,9 +96,9 @@ <h2 id="download">Download</h2>
9696
</p>
9797

9898
<p>
99-
Unstable: 2011.01.21
100-
<a href="http://nodejs.org/dist/node-v0.3.6.tar.gz">node-v0.3.6.tar.gz</a>
101-
(<a href="http://nodejs.org/docs/v0.3.6/api/index.html">Documentation</a>)
99+
Unstable: 2011.01.27
100+
<a href="http://nodejs.org/dist/node-v0.3.7.tar.gz">node-v0.3.7.tar.gz</a>
101+
(<a href="http://nodejs.org/docs/v0.3.7/api/index.html">Documentation</a>)
102102
</p>
103103

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

‎src/node_version.h‎

Copy file name to clipboardExpand all lines: src/node_version.h
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#define NODE_MAJOR_VERSION 0
88
#define NODE_MINOR_VERSION 3
99
#define NODE_PATCH_VERSION 7
10-
#define NODE_VERSION_IS_RELEASE 0
10+
#define NODE_VERSION_IS_RELEASE 1
1111

1212
#ifndef NODE_STRINGIFY
1313
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Collapse file

‎wscript‎

Copy file name to clipboardExpand all lines: wscript
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ def build(bld):
775775
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
776776
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
777777
, 'PREFIX' : safe_path(program.env["PREFIX"])
778-
, 'VERSION' : '0.3.2' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
778+
, 'VERSION' : '0.3.7' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
779779
}
780780
return x
781781

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.