Skip to content

Commit c8e7583

Browse files
committed
Prepare v1.4.0 release
1 parent 3a7389b commit c8e7583

File tree

4 files changed

+30
-8
lines changed

4 files changed

+30
-8
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github: clue
2+
custom: https://clue.engineering/support

CHANGELOG.md

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

3+
## 1.4.0 (2020-08-21)
4+
5+
* Improve API documentation, update README and add examples.
6+
(#45 by @clue and #51 by @SimonFrings)
7+
8+
* Improve test suite and add `.gitattributes` to exclude dev files from exports.
9+
Prepare PHP 8 support, update to PHPUnit 9, run tests on PHP 7.4 and simplify test matrix.
10+
(#46, #47 and #50 by @SimonFrings)
11+
312
## 1.3.1 (2019-04-09)
413

514
* Fix: Fix getting the type of unexpected rejection reason when not rejecting with an `Exception`.

README.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,27 @@ into your traditional, synchronous (blocking) application stack.
2020

2121
**Table of contents**
2222

23+
* [Support us](#support-us)
2324
* [Quickstart example](#quickstart-example)
2425
* [Usage](#usage)
25-
* [sleep()](#sleep)
26-
* [await()](#await)
27-
* [awaitAny()](#awaitany)
28-
* [awaitAll()](#awaitall)
26+
* [sleep()](#sleep)
27+
* [await()](#await)
28+
* [awaitAny()](#awaitany)
29+
* [awaitAll()](#awaitall)
2930
* [Install](#install)
3031
* [Tests](#tests)
3132
* [License](#license)
3233

34+
## Support us
35+
36+
We invest a lot of time developing, maintaining and updating our awesome
37+
open-source projects. You can help us sustain this high-quality of our work by
38+
[becoming a sponsor on GitHub](https://github.com/sponsors/clue). Sponsors get
39+
numerous benefits in return, see our [sponsoring page](https://github.com/sponsors/clue)
40+
for details.
41+
42+
Let's take these projects to the next level together! 🚀
43+
3344
### Quickstart example
3445

3546
The following example code demonstrates how this library can be used along with
@@ -108,7 +119,7 @@ trigger at the earliest possible time in the future.
108119
### await()
109120

110121
The `await(PromiseInterface $promise, LoopInterface $loop, ?float $timeout = null): mixed` function can be used to
111-
Block waiting for the given `$promise` to be fulfilled.
122+
block waiting for the given `$promise` to be fulfilled.
112123

113124
```php
114125
$result = Block\await($promise, $loop, $timeout);
@@ -232,7 +243,7 @@ This project follows [SemVer](https://semver.org/).
232243
This will install the latest supported version:
233244

234245
```bash
235-
$ composer require clue/block-react:^1.3.1
246+
$ composer require clue/block-react:^1.4
236247
```
237248

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

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"authors": [
88
{
99
"name": "Christian Lück",
10-
"email": "christian@lueck.tv"
10+
"email": "christian@clue.engineering"
1111
}
1212
],
1313
"autoload": {
@@ -17,7 +17,7 @@
1717
"psr-4": { "Clue\\Tests\\React\\Block\\": "tests/" }
1818
},
1919
"require": {
20-
"php": ">=5.3",
20+
"php": ">=5.3",
2121
"react/event-loop": "^1.0 || ^0.5 || ^0.4 || ^0.3.5",
2222
"react/promise": "^2.7 || ^1.2.1",
2323
"react/promise-timer": "^1.5"

0 commit comments

Comments
 (0)