From cfc75c361904970724045d2cc4e07048f0996f25 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Tue, 4 Apr 2017 08:19:52 -0400 Subject: [PATCH] update to 2.4.2 --- boilerplate/package.json | 2 +- demo/package.json | 2 +- docs/conf.py | 2 +- lib/core/engine.js | 2 +- lib/dashboard/monitor.js | 2 +- lib/index.js | 2 +- package.json | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/boilerplate/package.json b/boilerplate/package.json index b5f371257..4802dec8c 100644 --- a/boilerplate/package.json +++ b/boilerplate/package.json @@ -9,7 +9,7 @@ "license": "ISC", "homepage": "", "devDependencies": { - "embark": "^2.4.1", + "embark": "^2.4.2", "mocha": "^2.2.5" } } diff --git a/demo/package.json b/demo/package.json index d955d134d..e169030b6 100644 --- a/demo/package.json +++ b/demo/package.json @@ -10,7 +10,7 @@ "license": "ISC", "homepage": "", "devDependencies": { - "embark": "^2.4.1", + "embark": "^2.4.2", "mocha": "^2.2.5" } } diff --git a/docs/conf.py b/docs/conf.py index 9c30e7271..6cfd371b7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/lib/core/engine.js b/lib/core/engine.js index f706130df..730ca3470 100644 --- a/lib/core/engine.js +++ b/lib/core/engine.js @@ -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) { diff --git a/lib/dashboard/monitor.js b/lib/dashboard/monitor.js index d6035d721..54a262ab0 100644 --- a/lib/dashboard/monitor.js +++ b/lib/dashboard/monitor.js @@ -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(); diff --git a/lib/index.js b/lib/index.js index fbf4d95ac..b06ad4c60 100644 --- a/lib/index.js +++ b/lib/index.js @@ -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); diff --git a/package.json b/package.json index eed769485..d9ff11322 100644 --- a/package.json +++ b/package.json @@ -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"