File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed
Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.6.3 (2021-07-11)
4+
5+ A major new feature release, see [ ** release announcement** ] ( https://clue.engineering/2021/announcing-reactphp-default-loop ) .
6+
7+ * Feature: Simplify usage by supporting new [ default loop] ( https://reactphp.org/event-loop/#loop ) .
8+ (#87 by @clue )
9+
10+ ``` php
11+ // old (still supported)
12+ $process = new React\ChildProcess\Process($command);
13+ $process->start($loop);
14+
15+ // new (using default loop)
16+ $process = new React\ChildProcess\Process($command);
17+ $process->start();
18+ ```
19+
320## 0.6.2 (2021-02-05)
421
522* Feature: Support PHP 8 and add non-blocking I/O support on Windows with PHP 8.
Original file line number Diff line number Diff line change 1- # Child Process
1+ # ChildProcess
22
33[ ![ CI status] ( https://github.com/reactphp/child-process/workflows/CI/badge.svg )] ( https://github.com/reactphp/child-process/actions )
44
@@ -587,7 +587,7 @@ The recommended way to install this library is [through Composer](https://getcom
587587This will install the latest supported version:
588588
589589``` bash
590- $ composer require react/child-process:^0.6.2
590+ $ composer require react/child-process:^0.6.3
591591```
592592
593593See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments