Skip to content

Commit

Permalink
Prepare v0.6.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Sep 16, 2022
1 parent ffe91a6 commit e71eb1a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,19 @@
# Changelog

## 0.6.5 (2022-09-16)

* Feature: Full support for PHP 8.1 and PHP 8.2 release.
(#91 by @SimonFrings and #99 by @WyriHaximus)

* Feature / Fix: Improve error reporting when custom error handler is used.
(#94 by @clue)

* Minor documentation improvements.
(#92 by @SimonFrings and #95 by @nhedger)

* Improve test suite, skip failing tests on bugged versions and fix legacy HHVM build.
(#96 and #98 by @clue and #93 by @SimonFrings)

## 0.6.4 (2021-10-12)

* Feature / Fix: Skip sigchild check if `phpinfo()` has been disabled.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -582,27 +582,27 @@ $process->start();

## Install

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

This will install the latest supported version:

```bash
composer require react/child-process:^0.6.4
composer require react/child-process:^0.6.5
```

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

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

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

## Tests

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

```bash
composer install
Expand Down

0 comments on commit e71eb1a

Please sign in to comment.