Skip to content

Commit

Permalink
Prepare v0.9.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Oct 2, 2019
1 parent 9bf3cf9 commit 07ce1e2
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 11 deletions.
24 changes: 20 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,24 @@
# CHANGELOG
# Changelog

This file is a manually maintained list of changes for each release. Feel free
to add your changes here when sending pull requests. Also send corrections if
you spot any mistakes.
## 0.9.1 (2019-10-02)

* Fix: Deleting vertex with loop edge no longer fails.
(#149 by @tomzx)

* Fix: Fix returning directed loop edges and adjacent vertices from vertex twice.
(#170 by @clue)

* Minor documentation updates and fixes.
(#153 by @marclaporte and #163, #164 and #172 by @clue)

* Improve test suite to move tests to `Fhaculty\Graph\Tests` namespace,
update test suite to support PHPUnit 6 and PHPUnit 5 and
support running on legacy PHP 5.3 through PHP 7.2 and HHVM.
(#148 by @tomzx and #150 and #162 by @clue)

* Originally planned to add a new `AttributeAware::removeAttribute()` method,
but reverted due to BC break. Change will be reconsidered for next major release.
(#138 and #171 by @johnathanmdell and @clue)

## 0.9.0 (2015-03-07)

Expand Down
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,16 +100,17 @@ See [graphp/algorithms](https://github.com/graphp/algorithms) for more details.

## Install

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

```JSON
{
"require": {
"clue/graph": "~0.9.0"
}
}
This will install the latest supported version:

```bash
$ composer require clue/graph:^0.9.1
```

See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.

This project aims to run on any platform and thus does not require any PHP
extensions and supports running on legacy PHP 5.3 through current PHP 7+ and
HHVM.
Expand Down

0 comments on commit 07ce1e2

Please sign in to comment.