Skip to content

Commit 07ce1e2

Browse files
committed
Prepare v0.9.1 release
1 parent 9bf3cf9 commit 07ce1e2

File tree

2 files changed

+28
-11
lines changed

2 files changed

+28
-11
lines changed

CHANGELOG.md

+20-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,24 @@
1-
# CHANGELOG
1+
# Changelog
22

3-
This file is a manually maintained list of changes for each release. Feel free
4-
to add your changes here when sending pull requests. Also send corrections if
5-
you spot any mistakes.
3+
## 0.9.1 (2019-10-02)
4+
5+
* Fix: Deleting vertex with loop edge no longer fails.
6+
(#149 by @tomzx)
7+
8+
* Fix: Fix returning directed loop edges and adjacent vertices from vertex twice.
9+
(#170 by @clue)
10+
11+
* Minor documentation updates and fixes.
12+
(#153 by @marclaporte and #163, #164 and #172 by @clue)
13+
14+
* Improve test suite to move tests to `Fhaculty\Graph\Tests` namespace,
15+
update test suite to support PHPUnit 6 and PHPUnit 5 and
16+
support running on legacy PHP 5.3 through PHP 7.2 and HHVM.
17+
(#148 by @tomzx and #150 and #162 by @clue)
18+
19+
* Originally planned to add a new `AttributeAware::removeAttribute()` method,
20+
but reverted due to BC break. Change will be reconsidered for next major release.
21+
(#138 and #171 by @johnathanmdell and @clue)
622

723
## 0.9.0 (2015-03-07)
824

README.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -100,16 +100,17 @@ See [graphp/algorithms](https://github.com/graphp/algorithms) for more details.
100100

101101
## Install
102102

103-
The recommended way to install this library is [through composer](http://getcomposer.org). [New to composer?](http://getcomposer.org/doc/00-intro.md)
103+
The recommended way to install this library is [through Composer](https://getcomposer.org).
104+
[New to Composer?](https://getcomposer.org/doc/00-intro.md)
104105

105-
```JSON
106-
{
107-
"require": {
108-
"clue/graph": "~0.9.0"
109-
}
110-
}
106+
This will install the latest supported version:
107+
108+
```bash
109+
$ composer require clue/graph:^0.9.1
111110
```
112111

112+
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
113+
113114
This project aims to run on any platform and thus does not require any PHP
114115
extensions and supports running on legacy PHP 5.3 through current PHP 7+ and
115116
HHVM.

0 commit comments

Comments
 (0)