Skip to content

Commit

Permalink
Prep v0.5.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cpettitt committed Dec 27, 2017
1 parent 673729d commit cae18a9
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dagre-d3",
"version": "0.5.1",
"version": "0.5.2",
"main": [
"dist/dagre-d3.core.js"
],
Expand Down
2 changes: 1 addition & 1 deletion dist/dagre-d3.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,7 @@ function applyTransition(selection, g) {
}

},{"./lodash":21}],28:[function(require,module,exports){
module.exports = "0.5.1";
module.exports = "0.5.2";

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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/dagre-d3.js
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,7 @@ function applyTransition(selection, g) {
}

},{"./lodash":21}],28:[function(require,module,exports){
module.exports = "0.5.1";
module.exports = "0.5.2";

},{}],29:[function(require,module,exports){
/*
Expand Down
2 changes: 1 addition & 1 deletion dist/dagre-d3.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ module.exports={isSubgraph:isSubgraph,edgeToId:edgeToId,applyStyle:applyStyle,ap
/*
* Returns true if the specified node in the graph is a subgraph node. A
* subgraph node is one that contains other nodes.
*/function isSubgraph(g,v){return!!g.children(v).length}function edgeToId(e){return escapeId(e.v)+":"+escapeId(e.w)+":"+escapeId(e.name)}var ID_DELIM=/:/g;function escapeId(str){return str?String(str).replace(ID_DELIM,"\\:"):""}function applyStyle(dom,styleFn){if(styleFn){dom.attr("style",styleFn)}}function applyClass(dom,classFn,otherClasses){if(classFn){dom.attr("class",classFn).attr("class",otherClasses+" "+dom.attr("class"))}}function applyTransition(selection,g){var graph=g.graph();if(_.isPlainObject(graph)){var transition=graph.transition;if(_.isFunction(transition)){return transition(selection)}}return selection}},{"./lodash":21}],28:[function(require,module,exports){module.exports="0.5.1"},{}],29:[function(require,module,exports){
*/function isSubgraph(g,v){return!!g.children(v).length}function edgeToId(e){return escapeId(e.v)+":"+escapeId(e.w)+":"+escapeId(e.name)}var ID_DELIM=/:/g;function escapeId(str){return str?String(str).replace(ID_DELIM,"\\:"):""}function applyStyle(dom,styleFn){if(styleFn){dom.attr("style",styleFn)}}function applyClass(dom,classFn,otherClasses){if(classFn){dom.attr("class",classFn).attr("class",otherClasses+" "+dom.attr("class"))}}function applyTransition(selection,g){var graph=g.graph();if(_.isPlainObject(graph)){var transition=graph.transition;if(_.isFunction(transition)){return transition(selection)}}return selection}},{"./lodash":21}],28:[function(require,module,exports){module.exports="0.5.2"},{}],29:[function(require,module,exports){
/*
Copyright (c) 2012-2014 Chris Pettitt
Expand Down
2 changes: 1 addition & 1 deletion lib/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = "0.5.2-pre";
module.exports = "0.5.2";
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dagre-d3",
"version": "0.5.2-pre",
"version": "0.5.2",
"description": "A D3-based renderer for Dagre",
"author": "Chris Pettitt <chris@samsarin.com>",
"keywords": [
Expand Down Expand Up @@ -46,4 +46,4 @@
"url": "https://github.com/dagrejs/dagre-d3.git"
},
"license": "MIT"
}
}

0 comments on commit cae18a9

Please sign in to comment.