Skip to content

Commit b2c0c8f

Browse files
committed
update to 2.4.1
1 parent 8327725 commit b2c0c8f

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

boilerplate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"license": "ISC",
1010
"homepage": "",
1111
"devDependencies": {
12-
"embark": "^2.4.0",
12+
"embark": "^2.4.1",
1313
"mocha": "^2.2.5"
1414
}
1515
}

demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"license": "ISC",
1111
"homepage": "",
1212
"devDependencies": {
13-
"embark": "^2.4.0",
13+
"embark": "^2.4.1",
1414
"mocha": "^2.2.5"
1515
}
1616
}

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
version = u'2.4'
6262
# The full version, including alpha/beta/rc tags.
63-
release = u'2.4.0'
63+
release = u'2.4.1'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

lib/core/engine.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var Engine = function(options) {
1414
this.env = options.env;
1515
this.embarkConfig = options.embarkConfig;
1616
this.interceptLogs = options.interceptLogs;
17-
this.version = "2.4.0";
17+
this.version = "2.4.1";
1818
};
1919

2020
Engine.prototype.init = function(_options) {

lib/dashboard/monitor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var blessed = require("blessed");
44
var CommandHistory = require('./command_history.js');
55

66
function Dashboard(options) {
7-
var title = (options && options.title) || "Embark 2.4.0";
7+
var title = (options && options.title) || "Embark 2.4.1";
88
this.env = options.env;
99
this.console = options.console;
1010
this.history = new CommandHistory();

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var Cmd = require('./cmd.js');
2525

2626
var Embark = {
2727

28-
version: '2.4.0',
28+
version: '2.4.1',
2929

3030
process: function(args) {
3131
var cmd = new Cmd(Embark);

0 commit comments

Comments
 (0)