Skip to content

Commit f012cb0

Browse files
committed
Prepare v1.1.0 release
1 parent e44e039 commit f012cb0

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## 1.1.0 (2018-04-30)
4+
5+
* Feature: Add `all()` helper to await successful fulfillment of all operations
6+
(#8 by @clue)
7+
8+
```php
9+
// new: limit concurrency while awaiting all operations to complete
10+
$promise = Queue:all(3, $urls, function ($url) use ($browser) {
11+
return $browser->get($url);
12+
});
13+
14+
$promise->then(function (array $responses) {
15+
echo 'All ' . count($responses) . ' successful!' . PHP_EOL;
16+
});
17+
```
18+
19+
* Fix: Implement cancellation forwarding for previously queued operations
20+
(#7 by @clue)
21+
322
## 1.0.0 (2018-02-26)
423

524
* First stable release, following SemVer

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ This project follows [SemVer](http://semver.org/).
399399
This will install the latest supported version:
400400

401401
```bash
402-
$ composer require clue/mq-react:^1.0
402+
$ composer require clue/mq-react:^1.1
403403
```
404404

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

0 commit comments

Comments
 (0)