Skip to content

Commit aae49d7

Browse files
committed
Prepare v0.5.2 release
1 parent d2b7244 commit aae49d7

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

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

3+
## 0.5.2 (2018-01-18)
4+
5+
* Feature: Detect "exit" immediately if last process pipe is closed
6+
(#58 by @clue)
7+
8+
This introduces a simple check to see if the program is already known to be
9+
closed when the last process pipe is closed instead of relying on a periodic
10+
timer. This simple change improves "exit" detection significantly for most
11+
programs and does not cause a noticeable penalty for more advanced use cases.
12+
13+
* Fix forward compatibility with upcoming EventLoop releases
14+
(#56 by @clue)
15+
316
## 0.5.1 (2017-12-22)
417

518
* Fix: Update Stream dependency to work around SEGFAULT in legacy PHP < 5.4.28

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,11 +325,17 @@ The recommended way to install this library is [through Composer](https://getcom
325325
This will install the latest supported version:
326326

327327
```bash
328-
$ composer require react/child-process:^0.5.1
328+
$ composer require react/child-process:^0.5.2
329329
```
330330

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

333+
This project aims to run on any platform and thus does not require any PHP
334+
extensions and supports running on legacy PHP 5.3 through current PHP 7+ and HHVM.
335+
It's *highly recommended to use PHP 7+* for this project.
336+
337+
See above note for limited [Windows Compatibility](#windows-compatibility).
338+
333339
## Tests
334340

335341
To run the test suite, you first need to clone this repo and then install all

0 commit comments

Comments
 (0)