Skip to content

Commit

Permalink
Prep v0.7.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cpettitt committed Jul 8, 2015
1 parent fe73393 commit ac5e9a1
Show file tree
Hide file tree
Showing 7 changed files with 10,466 additions and 4,896 deletions.
6 changes: 3 additions & 3 deletions bower.json
@@ -1,6 +1,6 @@
{
"name": "dagre",
"version": "0.7.2",
"version": "0.7.3",
"main": [
"dist/dagre.core.js",
"dist/dagre.core.min.js"
Expand All @@ -20,7 +20,7 @@
"test/**"
],
"dependencies": {
"graphlib": "^1.0.3",
"lodash": "^2.4.1"
"graphlib": "^1.0.5",
"lodash": "^3.10.0"
}
}
4 changes: 2 additions & 2 deletions dist/dagre.core.js
Expand Up @@ -2825,7 +2825,7 @@ function removeEmptyRanks(g) {
var layers = [];
_.each(g.nodes(), function(v) {
var rank = g.node(v).rank - offset;
if (!_.has(layers, rank)) {
if (!layers[rank]) {
layers[rank] = [];
}
layers[rank].push(v);
Expand Down Expand Up @@ -2898,7 +2898,7 @@ function notime(name, fn) {
}

},{"./graphlib":7,"./lodash":10}],30:[function(require,module,exports){
module.exports = "0.7.2";
module.exports = "0.7.3";

},{}]},{},[1])(1)
});
2 changes: 1 addition & 1 deletion dist/dagre.core.min.js

Large diffs are not rendered by default.

0 comments on commit ac5e9a1

Please sign in to comment.