From 07ce1e2f6d5be2ff600ce13660b25f25cf928c66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Wed, 2 Oct 2019 11:10:26 +0200 Subject: [PATCH] Prepare v0.9.1 release --- CHANGELOG.md | 24 ++++++++++++++++++++---- README.md | 15 ++++++++------- 2 files changed, 28 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7368db16..3abfe9e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index ff1ab651..aa12967f 100644 --- a/README.md +++ b/README.md @@ -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.