Skip to content

Commit e71eb1a

Browse files
committed
Prepare v0.6.5 release
1 parent ffe91a6 commit e71eb1a

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

CHANGELOG.md

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

3+
## 0.6.5 (2022-09-16)
4+
5+
* Feature: Full support for PHP 8.1 and PHP 8.2 release.
6+
(#91 by @SimonFrings and #99 by @WyriHaximus)
7+
8+
* Feature / Fix: Improve error reporting when custom error handler is used.
9+
(#94 by @clue)
10+
11+
* Minor documentation improvements.
12+
(#92 by @SimonFrings and #95 by @nhedger)
13+
14+
* Improve test suite, skip failing tests on bugged versions and fix legacy HHVM build.
15+
(#96 and #98 by @clue and #93 by @SimonFrings)
16+
317
## 0.6.4 (2021-10-12)
418

519
* Feature / Fix: Skip sigchild check if `phpinfo()` has been disabled.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -582,27 +582,27 @@ $process->start();
582582

583583
## Install
584584

585-
The recommended way to install this library is [through Composer](https://getcomposer.org).
585+
The recommended way to install this library is [through Composer](https://getcomposer.org/).
586586
[New to Composer?](https://getcomposer.org/doc/00-intro.md)
587587

588588
This will install the latest supported version:
589589

590590
```bash
591-
composer require react/child-process:^0.6.4
591+
composer require react/child-process:^0.6.5
592592
```
593593

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

596596
This project aims to run on any platform and thus does not require any PHP
597597
extensions and supports running on legacy PHP 5.3 through current PHP 8+ and HHVM.
598-
It's *highly recommended to use PHP 7+* for this project.
598+
It's *highly recommended to use the latest supported PHP version* for this project.
599599

600600
See above note for limited [Windows Compatibility](#windows-compatibility).
601601

602602
## Tests
603603

604604
To run the test suite, you first need to clone this repo and then install all
605-
dependencies [through Composer](https://getcomposer.org):
605+
dependencies [through Composer](https://getcomposer.org/):
606606

607607
```bash
608608
composer install

0 commit comments

Comments
 (0)