Skip to content

Commit

Permalink
Prep v0.8.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lutzroeder committed Dec 9, 2018
1 parent 5877eb4 commit 99a59a9
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "dagre",
"version": "0.8.2",
"version": "0.8.3",
"main": [
"dist/dagre.core.js"
],
Expand Down
2 changes: 1 addition & 1 deletion dist/dagre.core.js
Expand Up @@ -2921,7 +2921,7 @@ function notime(name, fn) {
}

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

},{}]},{},[1])(1)
});
2 changes: 1 addition & 1 deletion dist/dagre.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.js
Expand Up @@ -2921,7 +2921,7 @@ function notime(name, fn) {
}

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

},{}],31:[function(require,module,exports){
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/dagre.min.js
Expand Up @@ -500,7 +500,7 @@ var offset=_.min(_.map(g.nodes(),function(v){return g.node(v).rank}));var layers
/*
* Returns a new function that wraps `fn` with a timer. The wrapper logs the
* time it takes to execute the function.
*/function time(name,fn){var start=_.now();try{return fn()}finally{console.log(name+" time: "+(_.now()-start)+"ms")}}function notime(name,fn){return fn()}},{"./graphlib":7,"./lodash":10}],30:[function(require,module,exports){module.exports="0.8.3-pre"},{}],31:[function(require,module,exports){
*/function time(name,fn){var start=_.now();try{return fn()}finally{console.log(name+" time: "+(_.now()-start)+"ms")}}function notime(name,fn){return fn()}},{"./graphlib":7,"./lodash":10}],30:[function(require,module,exports){module.exports="0.8.3"},{}],31:[function(require,module,exports){
/**
* Copyright (c) 2014, Chris Pettitt
* All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion lib/version.js
@@ -1 +1 @@
module.exports = "0.8.3-pre";
module.exports = "0.8.3";
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "dagre",
"version": "0.8.3-pre",
"version": "0.8.3",
"description": "Graph layout for JavaScript",
"author": "Chris Pettitt <cpettitt@gmail.com>",
"contributors": [
Expand Down

0 comments on commit 99a59a9

Please sign in to comment.