Skip to content

Commit 83f64ed

Browse files
committed
Prepare v0.2.0 release
1 parent 79edec2 commit 83f64ed

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ This file is a manually maintained list of changes for each release. Feel free
44
to add your changes here when sending pull requests. Also send corrections if
55
you spot any mistakes.
66

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+
715
## 0.1.0 (2014-12-31)
816

917
* First tagged release, split off from [clue/graph](https://github.com/clue/graph) v0.8.0

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ $red->setAttribtue('graphviz.color', 'red');
2727
$edge = $blue->createEdgeTo($red);
2828
$edge->setAttribute('graphviz.color', 'grey');
2929

30-
$graphviz = new Graphp\GraphViz\GraphViz($graph);
31-
$graphviz->display();
30+
$graphviz = new Graphp\GraphViz\GraphViz();
31+
$graphviz->display($graph);
3232
````
3333

3434
## Install
@@ -38,7 +38,7 @@ The recommended way to install this library is [through composer](http://getcomp
3838
```JSON
3939
{
4040
"require": {
41-
"graphp/graphviz": "~0.1.0"
41+
"graphp/graphviz": "~0.2.0"
4242
}
4343
}
4444
```

0 commit comments

Comments
 (0)