Skip to content

Commit

Permalink
Prep v0.3.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cpettitt committed Dec 13, 2014
1 parent 80e9c87 commit 3a7b1bf
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 13 deletions.
5 changes: 3 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dagre-d3",
"version": "0.3.3-pre",
"version": "0.3.3",
"main": [
"dist/dagre-d3.core.js",
"dist/dagre-d3.core.min.js"
Expand All @@ -13,6 +13,7 @@
"browser.js",
"dist/dagre-d3.js",
"dist/dagre-d3.min.js",
"dist/demo/**",
"index.js",
"karma*",
"lib/**",
Expand All @@ -22,7 +23,7 @@
],
"dependencies": {
"d3": "^3.3.8",
"dagre": "^0.6.2",
"dagre": "^0.6.3",
"graphlib": "^1.0.1",
"lodash": "^2.4.1"
}
Expand Down
4 changes: 2 additions & 2 deletions dist/dagre-d3.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ function createNodes(selection, g, shapes) {
labelGroup = thisGroup.append("g").attr("class", "label"),
labelDom = addLabel(labelGroup, node),
shape = shapes[node.shape],
bbox = labelDom.node().getBBox();
bbox = _.pick(labelDom.node().getBBox(), "width", "height");

node.elem = this;

Expand Down Expand Up @@ -1041,7 +1041,7 @@ function applyTransition(selection, g) {
}

},{"./lodash":20}],26:[function(require,module,exports){
module.exports = "0.3.3-pre";
module.exports = "0.3.3";

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

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/dagre-d3.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ function createNodes(selection, g, shapes) {
labelGroup = thisGroup.append("g").attr("class", "label"),
labelDom = addLabel(labelGroup, node),
shape = shapes[node.shape],
bbox = labelDom.node().getBBox();
bbox = _.pick(labelDom.node().getBBox(), "width", "height");

node.elem = this;

Expand Down Expand Up @@ -1041,7 +1041,7 @@ function applyTransition(selection, g) {
}

},{"./lodash":20}],26:[function(require,module,exports){
module.exports = "0.3.3-pre";
module.exports = "0.3.3";

},{}],27:[function(require,module,exports){
/*
Expand Down Expand Up @@ -3906,7 +3906,7 @@ function notime(name, fn) {
}

},{"./graphlib":33,"./lodash":36}],56:[function(require,module,exports){
module.exports = "0.6.2";
module.exports = "0.6.3";

},{}],57:[function(require,module,exports){
/**
Expand Down
6 changes: 3 additions & 3 deletions dist/dagre-d3.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = "0.3.3-pre";
module.exports = "0.3.3";
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dagre-d3",
"version": "0.3.3-pre",
"version": "0.3.3",
"description": "A D3-based renderer for Dagre",
"author": "Chris Pettitt <chris@samsarin.com>",
"keywords": [
Expand Down

0 comments on commit 3a7b1bf

Please sign in to comment.