Skip to content

Commit 490556d

Browse files
committed
Prepare v1.3.0 release
1 parent e7d77f9 commit 490556d

File tree

3 files changed

+26
-5
lines changed

3 files changed

+26
-5
lines changed

CHANGELOG.md

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

3+
## 1.3.0 (2020-10-16)
4+
5+
* Enhanced documentation for ReactPHP's new HTTP client and
6+
add support / sponsorship info.
7+
(#21 and #24 by @clue)
8+
9+
* Improve test suite and add `.gitattributes` to exclude dev files from exports.
10+
Prepare PHP 8 support, update to PHPUnit 9 and simplify test matrix.
11+
(#22, #23 and #25 by @SimonFrings)
12+
313
## 1.2.0 (2019-12-05)
414

515
* Feature: Add `any()` helper to await first successful fulfillment of operations.

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ much any API that already uses Promises.
3232

3333
**Table of contents**
3434

35+
* [Support us](#support-us)
3536
* [Quickstart example](#quickstart-example)
3637
* [Usage](#usage)
3738
* [Queue](#queue)
@@ -45,6 +46,16 @@ much any API that already uses Promises.
4546
* [Tests](#tests)
4647
* [License](#license)
4748

49+
## Support us
50+
51+
We invest a lot of time developing, maintaining and updating our awesome
52+
open-source projects. You can help us sustain this high-quality of our work by
53+
[becoming a sponsor on GitHub](https://github.com/sponsors/clue). Sponsors get
54+
numerous benefits in return, see our [sponsoring page](https://github.com/sponsors/clue)
55+
for details.
56+
57+
Let's take these projects to the next level together! 🚀
58+
4859
## Quickstart example
4960

5061
Once [installed](#install), you can use the following code to access an
@@ -336,8 +347,8 @@ $promise = Queue::all(10, $jobs, array($browser, 'get'));
336347
#### any()
337348

338349
The static `any(int $concurrency, array $jobs, callable $handler): PromiseInterface<mixed>` method can be used to
339-
concurrently process given jobs through the given `$handler` and resolve
340-
with first resolution value.
350+
concurrently process the given jobs through the given `$handler` and
351+
resolve with first resolution value.
341352

342353
This is a convenience method which uses the `Queue` internally to
343354
schedule all jobs while limiting concurrency to ensure no more than
@@ -474,7 +485,7 @@ This project follows [SemVer](https://semver.org/).
474485
This will install the latest supported version:
475486

476487
```bash
477-
$ composer require clue/mq-react:^1.2
488+
$ composer require clue/mq-react:^1.3
478489
```
479490

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

src/Queue.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ public static function all($concurrency, array $jobs, $handler)
144144
}
145145

146146
/**
147-
* Concurrently process given jobs through the given `$handler` and resolve
148-
* with first resolution value.
147+
* Concurrently process the given jobs through the given `$handler` and
148+
* resolve with first resolution value.
149149
*
150150
* This is a convenience method which uses the `Queue` internally to
151151
* schedule all jobs while limiting concurrency to ensure no more than

0 commit comments

Comments
 (0)