Browse Source

Bump version to v0.3.4

v0.7.4-release v0.3.4
Ryan Dahl 14 years ago
parent
commit
73f53e12e4
  1. 2
      AUTHORS
  2. 18
      ChangeLog
  3. 8
      doc/index.html
  4. 2
      src/node_version.h

2
AUTHORS

@ -151,3 +151,5 @@ Devin Torres <devin@devintorres.com>
Theo Schlossnagle <jesus@omniti.com>
Kai Chen <kaichenxyz@gmail.com>
Daniel C <333222@gmail.com>
Mihai Călin Bazon <mihai@bazon.net>

18
ChangeLog

@ -1,4 +1,20 @@
2011.01.02, Version 0.3.3 (unstable)
2011.01.08, Version 0.3.4 (unstable)
* Primordal mingw build (Bert Belder)
* HTTPS server
* Built in debugger 'node debug script.js'
* realpath files during module load (Mihai Călin Bazon)
* Rename net.Stream to net.Socket (existing name will continue to be
supported)
* Fix process.platform
2011.01.02, Version 0.3.3 (unstable), 57544ba1c54c7d0da890317deeb73076350c5647
* TLS improvements.

8
doc/index.html

@ -23,7 +23,7 @@
<li><a href="#about">About</a></li>
<li><a href="#links">Links</a></li>
<li><a href="#contributing">Contributing</a></li>
<li><a href="http://nodejs.org/docs/v0.3.3/api">v0.3.3 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.3.4/api">v0.3.4 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.2.6/api.html">v0.2.6 docs</a></li>
</ol>
</div>
@ -92,9 +92,9 @@ net.createServer(function (socket) {
</p>
<p>
Unstable: 2011.01.02
<a href="http://nodejs.org/dist/node-v0.3.3.tar.gz">node-v0.3.3.tar.gz</a>
(<a href="http://nodejs.org/docs/v0.3.3/api/index.html">Documentation</a>)
Unstable: 2011.01.08
<a href="http://nodejs.org/dist/node-v0.3.4.tar.gz">node-v0.3.4.tar.gz</a>
(<a href="http://nodejs.org/docs/v0.3.4/api/index.html">Documentation</a>)
</p>
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>

2
src/node_version.h

@ -7,7 +7,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 3
#define NODE_PATCH_VERSION 4
#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

Loading…
Cancel
Save