update to 2.4.2
This commit is contained in:
parent
5a8304dd35
commit
cfc75c3619
|
@ -9,7 +9,7 @@
|
|||
"license": "ISC",
|
||||
"homepage": "",
|
||||
"devDependencies": {
|
||||
"embark": "^2.4.1",
|
||||
"embark": "^2.4.2",
|
||||
"mocha": "^2.2.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"license": "ISC",
|
||||
"homepage": "",
|
||||
"devDependencies": {
|
||||
"embark": "^2.4.1",
|
||||
"embark": "^2.4.2",
|
||||
"mocha": "^2.2.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -60,7 +60,7 @@ author = u'Iuri Matias'
|
|||
# The short X.Y version.
|
||||
version = u'2.4'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = u'2.4.1'
|
||||
release = u'2.4.2'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
@ -14,7 +14,7 @@ var Engine = function(options) {
|
|||
this.env = options.env;
|
||||
this.embarkConfig = options.embarkConfig;
|
||||
this.interceptLogs = options.interceptLogs;
|
||||
this.version = "2.4.1";
|
||||
this.version = "2.4.2";
|
||||
};
|
||||
|
||||
Engine.prototype.init = function(_options) {
|
||||
|
|
|
@ -4,7 +4,7 @@ var blessed = require("blessed");
|
|||
var CommandHistory = require('./command_history.js');
|
||||
|
||||
function Dashboard(options) {
|
||||
var title = (options && options.title) || "Embark 2.4.1";
|
||||
var title = (options && options.title) || "Embark 2.4.2";
|
||||
this.env = options.env;
|
||||
this.console = options.console;
|
||||
this.history = new CommandHistory();
|
||||
|
|
|
@ -25,7 +25,7 @@ var Cmd = require('./cmd.js');
|
|||
|
||||
var Embark = {
|
||||
|
||||
version: '2.4.1',
|
||||
version: '2.4.2',
|
||||
|
||||
process: function(args) {
|
||||
var cmd = new Cmd(Embark);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "embark",
|
||||
"version": "2.4.1",
|
||||
"version": "2.4.2",
|
||||
"description": "Embark is a framework that allows you to easily develop and deploy DApps",
|
||||
"scripts": {
|
||||
"test": "grunt jshint && mocha test/ --no-timeouts"
|
||||
|
|
Loading…
Reference in New Issue