Skip to content

Commit ac5e9a1

Browse files
committed
Prep v0.7.3 release
1 parent fe73393 commit ac5e9a1

File tree

7 files changed

+10466
-4896
lines changed

7 files changed

+10466
-4896
lines changed

bower.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dagre",
3-
"version": "0.7.2",
3+
"version": "0.7.3",
44
"main": [
55
"dist/dagre.core.js",
66
"dist/dagre.core.min.js"
@@ -20,7 +20,7 @@
2020
"test/**"
2121
],
2222
"dependencies": {
23-
"graphlib": "^1.0.3",
24-
"lodash": "^2.4.1"
23+
"graphlib": "^1.0.5",
24+
"lodash": "^3.10.0"
2525
}
2626
}

dist/dagre.core.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2825,7 +2825,7 @@ function removeEmptyRanks(g) {
28252825
var layers = [];
28262826
_.each(g.nodes(), function(v) {
28272827
var rank = g.node(v).rank - offset;
2828-
if (!_.has(layers, rank)) {
2828+
if (!layers[rank]) {
28292829
layers[rank] = [];
28302830
}
28312831
layers[rank].push(v);
@@ -2898,7 +2898,7 @@ function notime(name, fn) {
28982898
}
28992899

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

29032903
},{}]},{},[1])(1)
29042904
});

dist/dagre.core.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)