Skip to content

Commit

Permalink
update to 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iurimatias committed Mar 7, 2017
1 parent fb4681a commit 71121cd
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion boilerplate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"license": "ISC",
"homepage": "",
"devDependencies": {
"embark": "^2.3.0",
"embark": "^2.4.0",
"mocha": "^2.2.5"
}
}
2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"license": "ISC",
"homepage": "",
"devDependencies": {
"embark": "^2.3.0",
"embark": "^2.4.0",
"mocha": "^2.2.5"
}
}
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
# built documents.
#
# The short X.Y version.
version = u'2.3'
version = u'2.4'
# The full version, including alpha/beta/rc tags.
release = u'2.3.0'
release = u'2.4.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion lib/core/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var Engine = function(options) {
this.env = options.env;
this.embarkConfig = options.embarkConfig;
this.interceptLogs = options.interceptLogs;
this.version = "2.3.0";
this.version = "2.4.0";
};

Engine.prototype.init = function(_options) {
Expand Down
2 changes: 1 addition & 1 deletion lib/dashboard/monitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var blessed = require("blessed");
var CommandHistory = require('./command_history.js');

function Dashboard(options) {
var title = (options && options.title) || "Embark 2.3.0";
var title = (options && options.title) || "Embark 2.4.0";
this.env = options.env;
this.console = options.console;
this.history = new CommandHistory();
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var Cmd = require('./cmd.js');

var Embark = {

version: '2.3.0',
version: '2.4.0',

process: function(args) {
var cmd = new Cmd(Embark);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "embark",
"version": "2.3.0",
"version": "2.4.0",
"description": "Embark is a framework that allows you to easily develop and deploy DApps",
"scripts": {
"test": "grunt jshint && mocha test/ --no-timeouts"
Expand Down

0 comments on commit 71121cd

Please sign in to comment.