Skip to content

Commit

Permalink
Prepare v1.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Sep 8, 2017
1 parent 7ff7fd1 commit 4fb7d56
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 4fb7d56

Please sign in to comment.