Browse Source

Bump version to v0.7.0

v0.7.4-release v0.7.0
Ryan Dahl 13 years ago
parent
commit
9cc55dca6f
  1. 15
      ChangeLog
  2. 4
      doc/template.html
  3. 2
      src/node_version.h

15
ChangeLog

@ -1,3 +1,18 @@
2012.01.16, Version 0.7.0 (unstable)
* Upgrade V8 to 3.8.6
* Use GYP build system on unix (Ben Noordhuis)
* Experimenetal isolates support (Ben Noordhuis)
* Improvements to Cluster API (Andreas Madsen)
* Use isolates for internal debugger (Fedor Indutny)
* Bug fixes
2012.01.06, Version 0.6.7 (stable)
* V8 hash collision fix (Breaks MIPS) (Bert Belder, Erik Corry)

4
doc/template.html

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{section}}Node.js v0.6.7 Manual &amp; Documentation</title>
<title>{{section}}Node.js v0.7.0 Manual &amp; Documentation</title>
<link rel="stylesheet" href="assets/style.css">
<link rel="stylesheet" href="assets/sh.css">
<link rel="canonical" href="http://nodejs.org/docs/latest/api/{{filename}}.html">
@ -10,7 +10,7 @@
<body>
<div id="container">
<header>
<h1>Node.js v0.6.7 Manual &amp; Documentation</h1>
<h1>Node.js v0.7.0 Manual &amp; Documentation</h1>
<div id="gtoc">
<p><a href="index.html">Index</a> | <a href="all.html">View on single page</a></p>
</div>

2
src/node_version.h

@ -29,7 +29,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 7
#define NODE_PATCH_VERSION 0
#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