Comparing version 0.5.7 to 0.5.8
@@ -0,1 +1,6 @@ | ||
v0.5.8 | ||
====== | ||
* Fixed bug where graph value was not copied correctly with graph.copy(). | ||
v0.5.7 | ||
@@ -2,0 +7,0 @@ ====== |
@@ -145,3 +145,3 @@ var filter = require("./filter"), | ||
var copy = new this.constructor(); | ||
copy.graph(this.graph); | ||
copy.graph(this.graph()); | ||
this.eachNode(function(u, value) { copy.addNode(u, value); }); | ||
@@ -148,0 +148,0 @@ this.eachEdge(function(e, u, v, value) { copy.addEdge(e, u, v, value); }); |
@@ -1,1 +0,1 @@ | ||
module.exports = '0.5.7'; | ||
module.exports = '0.5.8'; |
{ | ||
"name": "graphlib", | ||
"version": "0.5.7", | ||
"version": "0.5.8", | ||
"description": "A directed and undirected multi-graph library", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
57490