diff --git a/CHANGELOG.md b/CHANGELOG.md index a3101e3..c0a4b47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## 1.3.0 (2017-09-08) + +* Feature: Support request cancellation + (#75 by @clue) + + ```php + $promise = $browser->get($url); + + $loop->addTimer(2.0, function () use ($promise) { + $promise->cancel(); + }); + ``` + +* Feature: Update react/http-client to v0.5, + support react/stream v0.6 and react/socket-client v0.7 and drop legacy PHP 5.3 support + (#74 by @clue) + ## 1.2.0 (2017-09-05) * Feature: Forward compatibility with react/http-client v0.5 diff --git a/README.md b/README.md index 9a7b37d..b9491ef 100644 --- a/README.md +++ b/README.md @@ -583,7 +583,7 @@ The recommended way to install this library is [through Composer](https://getcom This will install the latest supported version: ```bash -$ composer require clue/buzz-react:^1.2 +$ composer require clue/buzz-react:^1.3 ``` See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.