File tree 2 files changed +24
-1
lines changed
2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,29 @@ This file is a manually maintained list of changes for each release. Feel free
4
4
to add your changes here when sending pull requests. Also send corrections if
5
5
you spot any mistakes.
6
6
7
+ ## 0.9.0 (2015-03-07)
8
+
9
+ * BC break: Split off individual components in order to stabilize core graph lib.
10
+ ([ #120 ] ( https://github.com/clue/graph/issues/120 ) )
11
+
12
+ * Split off ` Algorithm ` namespace into separate [ graphp/algorithms] ( https://github.com/graphp/algorithms ) package.
13
+ ([ #119 ] ( https://github.com/clue/graph/issues/119 ) )
14
+
15
+ * Split off ` Exporter\TrivialGraphFormat ` into separate [ graphp/trivial-graph-format] ( https://github.com/graphp/trivial-graph-format ) package.
16
+ ([ #121 ] ( https://github.com/clue/graph/issues/121 ) )
17
+
18
+ * Split off ` Loader ` namespace into separate [ graphp/plaintext] ( https://github.com/graphp/plaintext ) package.
19
+ ([ #117 ] ( https://github.com/clue/graph/issues/117 ) )
20
+
21
+ * BC break: Remove Exporter from ` Graph ` and ` Graph::__toString() ` (trivial graph format exporter has been split off).
22
+ ([ #122 ] ( https://github.com/clue/graph/pull/122 ) )
23
+
24
+ * BC break: Vertices can no longer be sorted by (in/out)degree (degree algorithm has been split off).
25
+ ([ #128 ] ( https://github.com/clue/graph/pull/128 ) )
26
+
27
+ * Apply PSR-4 layout under ` src/ ` and add tests to achieve 100% test coverage.
28
+ ([ #127 ] ( https://github.com/clue/graph/issues/127 ) & [ #129 ] ( https://github.com/clue/graph/issues/129 ) )
29
+
7
30
## 0.8.0 (2014-12-31)
8
31
9
32
* Feature: Add general purpose Attributes.
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ The recommended way to install this library is [through composer](http://getcomp
91
91
``` JSON
92
92
{
93
93
"require" : {
94
- "clue/graph" : " ~0.8 .0"
94
+ "clue/graph" : " ~0.9 .0"
95
95
}
96
96
}
97
97
```
You can’t perform that action at this time.
0 commit comments