Skip to content

Commit 45e6e3a

Browse files
committed
Prepare v0.6.3 release
1 parent ca30b94 commit 45e6e3a

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
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.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
587587
This 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

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

0 commit comments

Comments
 (0)