Browse Source

bump version

v0.7.4-release v0.2.0
Ryan Dahl 15 years ago
parent
commit
9283e134e5
  1. 4
      AUTHORS
  2. 19
      ChangeLog
  3. 2
      doc/api_header.html
  4. 4
      doc/index.html
  5. 4
      src/node_version.h

4
AUTHORS

@ -110,3 +110,7 @@ Andrew Naylor <argon@mkbot.net>
Benjamin Kramer <benny.kra@gmail.com> Benjamin Kramer <benny.kra@gmail.com>
Danny Coates <dannycoates@gmail.com> Danny Coates <dannycoates@gmail.com>
Nick Stenning <nick@whiteink.com> Nick Stenning <nick@whiteink.com>
Bert Belder <bertbelder@gmail.com>
Trent Mick <trentm@gmail.com>
Fedor Indutny <fedor.indutny@gmail.com>
Illarionov Oleg <oleg@emby.ru>

19
ChangeLog

@ -1,3 +1,22 @@
2010.08.20, Version 0.2.0
* process.title support for FreeBSD, Macintosh, Linux
* Fix OpenSSL 100% CPU usage on error (Illarionov Oleg)
* Implement net.Server.maxConnections.
* Fix process.platform, add process.version.
* Add --without-snapshot configure option.
* Readline REPL improvements (Trent Mick)
* Bug fixes.
* Upgrade V8 to 2.3.8
2010.08.13, Version 0.1.104 2010.08.13, Version 0.1.104
* Various bug fixes (console, querystring, require) * Various bug fixes (console, querystring, require)

2
doc/api_header.html

@ -295,7 +295,7 @@
<body> <body>
<div id="toc"> <div id="toc">
<div id="toctitle">Node v0.1.104</div> <div id="toctitle">Node v0.2.0</div>
<noscript>JavaScript must be enabled in your browser to display the table of contents.</noscript> <noscript>JavaScript must be enabled in your browser to display the table of contents.</noscript>
</div> </div>
<div id='man'> <div id='man'>

4
doc/index.html

@ -89,8 +89,8 @@ net.createServer(function (socket) {
<a href="http://github.com/ry/node/tree/master">git repo</a> <a href="http://github.com/ry/node/tree/master">git repo</a>
</p> </p>
<p> <p>
2010.08.13 2010.08.20
<a href="http://nodejs.org/dist/node-v0.1.104.tar.gz">node-v0.1.104.tar.gz</a> <a href="http://nodejs.org/dist/node-v0.2.0.tar.gz">node-v0.2.0.tar.gz</a>
</p> </p>
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p> <p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>

4
src/node_version.h

@ -5,8 +5,8 @@
#define NODE_VERSION_H #define NODE_VERSION_H
#define NODE_MAJOR_VERSION 0 #define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 1 #define NODE_MINOR_VERSION 2
#define NODE_PATCH_VERSION 104 #define NODE_PATCH_VERSION 0
#ifndef NODE_STRINGIFY #ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

Loading…
Cancel
Save