File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed
Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -325,11 +325,17 @@ The recommended way to install this library is [through Composer](https://getcom
325325This 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
331331See 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
335341To run the test suite, you first need to clone this repo and then install all
You can’t perform that action at this time.
0 commit comments