Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2012-01-17 05:19:17 +0400
committerRyan Dahl <ry@tinyclouds.org>2012-01-17 07:00:41 +0400
commit9cc55dca6f67a6096c858b841c677b0593404321 (patch)
tree6be3b9a5aacabcb21ae76b60e5a032c8d98bfc52
parent716f5bc66bd78e5778de1c8e2c087d779de39fea (diff)
Bump version to v0.7.0v0.7.0
-rw-r--r--ChangeLog15
-rw-r--r--doc/template.html4
-rw-r--r--src/node_version.h2
3 files changed, 18 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index c23fe9b8ee9..4571c4d3ae0 100644
--- a/ChangeLog
+++ b/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)
diff --git a/doc/template.html b/doc/template.html
index 4eae50ea79e..6f7f9fc8d02 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 &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>
diff --git a/src/node_version.h b/src/node_version.h
index 06f866304a4..5f88a5f129b 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)