Skip to content

Commit b2b6a73

Browse files
committed
Prepare v1.1.0 release
1 parent 27de1cb commit b2b6a73

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
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-08-13)
4+
5+
* Feature: Add `all()` helper to await successful fulfillment of all operations.
6+
(#11 by @clue)
7+
8+
```php
9+
// new: limit concurrency while awaiting all operations to complete
10+
$promise = Transformer::all($input, 3, function ($data) use ($browser, $url) {
11+
return $browser->post($url, [], json_encode($data));
12+
});
13+
14+
$promise->then(function ($count) {
15+
echo 'All ' . $count . ' jobs successful!' . PHP_EOL;
16+
});
17+
```
18+
19+
* Feature: Forward compatibility with stable Stream v1.0 LTS.
20+
(#10 by @clue)
21+
322
## 1.0.0 (2018-05-25)
423

524
* First stable release, following SemVer

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ much any API that already uses Promises.
3434
and does not get in your way.
3535
Builds on top of well-tested components and well-established concepts instead of reinventing the wheel.
3636
* **Good test coverage** -
37-
Comes with an [automated tests suite](#tests) and is regularly tested in the *real world*
37+
Comes with an [automated tests suite](#tests) and is regularly tested in the *real world*.
3838

3939
**Table of contents**
4040

@@ -541,7 +541,7 @@ This project follows [SemVer](https://semver.org/).
541541
This will install the latest supported version:
542542

543543
```bash
544-
$ composer require clue/reactphp-flux:^1.0
544+
$ composer require clue/reactphp-flux:^1.1
545545
```
546546

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

0 commit comments

Comments
 (0)