File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ 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.2.0 (2015-01-19)
8
+
9
+ * BC break: Refactor to inject Graph into GraphViz on demand, inject GraphViz into exporters
10
+ ([ #6 ] ( https://github.com/graphp/graphviz/pull/6 ) )
11
+
12
+ * BC break: Remove legacy layout helper
13
+ ([ #5 ] ( https://github.com/graphp/graphviz/pull/5 ) )
14
+
7
15
## 0.1.0 (2014-12-31)
8
16
9
17
* First tagged release, split off from [ clue/graph] ( https://github.com/clue/graph ) v0.8.0
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ $red->setAttribtue('graphviz.color', 'red');
27
27
$edge = $blue->createEdgeTo($red);
28
28
$edge->setAttribute('graphviz.color', 'grey');
29
29
30
- $graphviz = new Graphp\GraphViz\GraphViz($graph );
31
- $graphviz->display();
30
+ $graphviz = new Graphp\GraphViz\GraphViz();
31
+ $graphviz->display($graph );
32
32
````
33
33
34
34
## Install
@@ -38,7 +38,7 @@ The recommended way to install this library is [through composer](http://getcomp
38
38
``` JSON
39
39
{
40
40
"require" : {
41
- "graphp/graphviz" : " ~0.1 .0"
41
+ "graphp/graphviz" : " ~0.2 .0"
42
42
}
43
43
}
44
44
```
You can’t perform that action at this time.
0 commit comments