diff options
-rw-r--r-- | ChangeLog | 15 | ||||
-rw-r--r-- | doc/template.html | 4 | ||||
-rw-r--r-- | src/node_version.h | 2 |
3 files changed, 18 insertions, 3 deletions
@@ -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) diff --git a/doc/template.html b/doc/template.html index 4eae50ea79..6f7f9fc8d0 100644 --- a/doc/template.html +++ b/doc/template.html @@ -2,7 +2,7 @@ <html lang="en"> <head> <meta charset="utf-8"> - <title>{{section}}Node.js v0.6.7 Manual & Documentation</title> + <title>{{section}}Node.js v0.7.0 Manual & 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 & Documentation</h1> + <h1>Node.js v0.7.0 Manual & Documentation</h1> <div id="gtoc"> <p><a href="index.html">Index</a> | <a href="all.html">View on single page</a></p> </div> diff --git a/src/node_version.h b/src/node_version.h index 06f866304a..5f88a5f129 100644 --- a/src/node_version.h +++ b/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) |