Skip to content

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jriecken committed Feb 11, 2020
1 parent fc6cf8f commit f05d8fc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Dependency Graph Changelog

## 0.9.0 (February 10, 2020)

- Rewrite the topological sort DFS to be more efficient (and work!) on large graphs.
- No longer uses recursion to avoid stack overflows with large/deep graphs
- No longer is accidentally `O(N^2)` (thanks [willtennien](https://github.com/willtennien) for pointing this out!)

## 0.8.1 (December 3, 2019)

- Ensure all nodes are included in overallOrder when cycles are allowed. (Fixes #33)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dependency-graph",
"description": "Simple dependency graph.",
"version": "0.8.1",
"version": "0.9.0",
"author": "Jim Riecken <jriecken@gmail.com>",
"keywords": [
"dependency",
Expand Down

0 comments on commit f05d8fc

Please sign in to comment.