Version bump, make tests work

Conflicts:
	grunt/tasks/populist.js
	package.json
	src/core/React.js
This commit is contained in:
petehunt
2013-12-13 14:24:11 -08:00
committed by Paul O’Shannessy
parent 1dd0ae5eb7
commit c278a788ac
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ module.exports = function() {
rootDirectory: config.rootDirectory,
args: args
}).then(function(output) {
grunt.file.write(config.outfile, output);
grunt.file.write(config.outfile, 'process = {env: {}};' + output);
done();
});
};
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "react",
"version": "0.6.0-alpha",
"version": "0.8.0-alpha",
"keywords": [
"react"
],
+1 -1
View File
@@ -66,6 +66,6 @@ var React = {
// Version exists only in the open-source version of React, not in Facebook's
// internal version.
React.version = '0.5.1';
React.version = '0.8.0-alpha';
module.exports = React;