@@ -6,9 +6,46 @@ you spot any mistakes.
66
77## 0.8.0 (2013-xx-xx)
88
9+ * BC break: Rename ` Algorithm\Directed::isDirected() ` to remove its ambiguity
10+ in regards to mixed and/or empty graphs
11+ ([ #80 ] ( https://github.com/clue/graph/issues/80 ) )
12+
13+ | Old name | New name |
14+ | ---| ---|
15+ | ` Algorithm\Directed::isDirected() ` | ` Algorithm\Directed::hasDirected() ` |
16+
17+ * Feature:: Add new ` Algorithm\Directed::hasUndirected() ` and
18+ ` Algorithm\Directed::isMixed() ` in order to complement the renamed
19+ ` Algorithm\Directed::hasDirected() `
20+ ([ #80 ] ( https://github.com/clue/graph/issues/80 ) )
21+
22+ * BC break: ` Walk::factoryCycleFromVertices() ` no longer tries to auto-complete
23+ a cycle if the first vertex does not match the last one, but now throws an
24+ ` InvalidArgumentException ` instead ([ #87 ] ( https://github.com/clue/graph/issues/87 )
25+
26+ * Feature: Support loop ` Walk ` s, i.e. a walk with only a single edge from
27+ vertex A back to A ([ #87 ] ( https://github.com/clue/graph/issues/87 )
28+
29+ * Fix: Stricter checks for invalid cycles, such as one with an invalid
30+ predecessor-map or no edges at all ([ #87 ] ( https://github.com/clue/graph/issues/87 )
31+
32+ * Fix: The ` Algorithm\ShortestPath\MooreBellmanFord ` now also works for unweighted
33+ edges. This also fixes an issue where ` Algorithm\DetectNegativeCycle ` didn't work
34+ for unweighted edges. ([ #81 ] ( https://github.com/clue/graph/issues/81 )
35+
936* Fix: Throwing an ` UnexpectedValueException ` if writing GraphViz Dot script
1037 to a temporary file fails and remove its debugging output
1138 ([ #77 ] ( https://github.com/clue/graph/issues/77 ) and [ #78 ] ( https://github.com/clue/graph/issues/78 ) @Metabor )
39+
40+ * BC break: Remove unneeded alias definitions of ` getVertexFirst() ` ,
41+ ` getVertexSource() ` and ` getVertexTarget() `
42+ [ #76 ] https://github.com/clue/graph/issues/76 )):
43+
44+ | Old name | New name |
45+ | ---| ---|
46+ | ` Graph::getVertexFirst() ` | ` Graph::getVertices()->getVertexFirst() ` |
47+ | ` Walk::getVertexSource() ` | ` Walk::getVertices()->getVertexFirst() ` |
48+ | ` Walk::getVertexTarget() ` | ` Walk::getVertices()->getVertexLast() ` |
1249
1350## 0.7.0 (2013-09-11)
1451
0 commit comments