diff --git a/boilerplate/package.json b/boilerplate/package.json index 4a1f879a..7fd1f3dc 100644 --- a/boilerplate/package.json +++ b/boilerplate/package.json @@ -10,7 +10,7 @@ "license": "ISC", "homepage": "", "devDependencies": { - "embark": "^2.1.1", + "embark": "^2.1.2", "mocha": "^2.2.5" } } diff --git a/demo/package.json b/demo/package.json index 4a1f879a..7fd1f3dc 100644 --- a/demo/package.json +++ b/demo/package.json @@ -10,7 +10,7 @@ "license": "ISC", "homepage": "", "devDependencies": { - "embark": "^2.1.1", + "embark": "^2.1.2", "mocha": "^2.2.5" } } diff --git a/lib/cmd.js b/lib/cmd.js index b0bddace..78173758 100644 --- a/lib/cmd.js +++ b/lib/cmd.js @@ -3,7 +3,7 @@ var colors = require('colors'); var Cmd = function(Embark) { this.Embark = Embark; - program.version('2.1.1'); + program.version('2.1.2'); }; Cmd.prototype.process = function(args) { diff --git a/lib/services.js b/lib/services.js index 4ce6fc08..5e4f2f50 100644 --- a/lib/services.js +++ b/lib/services.js @@ -28,7 +28,7 @@ ServicesMonitor.prototype.check = function() { }, function addEmbarkVersion(web3, result, callback) { self.logger.trace('addEmbarkVersion'); - result.push('Embark 2.1.1'.green); + result.push('Embark 2.1.2'.green); callback(null, web3, result); }, function checkEthereum(web3, result, callback) { diff --git a/package.json b/package.json index 0b90531a..b2057932 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "embark", - "version": "2.1.1", + "version": "2.1.2", "description": "Embark is a framework that allows you to easily develop and deploy DApps", "scripts": { "test": "grunt jshint && mocha test/ --no-timeouts"