Skip to content

Commit be6ebd7

Browse files
committed
Prepare v0.4.2 release
1 parent 1517546 commit be6ebd7

2 files changed

Lines changed: 34 additions & 0 deletions

File tree

CHANGELOG.md

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

3+
## 0.4.2 (2017-03-10)
4+
5+
* Feature: Forward compatibility with Stream v0.5
6+
(#26 by @clue)
7+
8+
* Improve test suite by removing AppVeyor and adding PHPUnit to `require-dev`
9+
(#27 and #28 by @clue)
10+
11+
## 0.4.1 (2016-08-01)
12+
13+
* Standalone component
14+
* Test against PHP 7 and HHVM, report test coverage, AppVeyor tests
15+
* Wait for stdout and stderr to close before watching for process exit
16+
(#18 by @mbonneau)
17+
318
## 0.4.0 (2014-02-02)
419

520
* Feature: Added ChildProcess to run async child processes within the event loop (@jmikola)

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ as [Streams](https://github.com/reactphp/stream).
2121
* [Prepending Commands with `exec`](#prepending-commands-with-exec)
2222
* [Sigchild Compatibility](#sigchild-compatibility)
2323
* [Command Chaining](#command-chaining)
24+
* [Install](#install)
2425
* [Tests](#tests)
26+
* [License](#license)
2527

2628
## Processes
2729

@@ -133,6 +135,19 @@ alternative, considering launching one process at a time and listening on its
133135
`exit` event to conditionally start the next process in the chain. This will
134136
give you an opportunity to configure the subsequent process' I/O streams.
135137

138+
## Install
139+
140+
The recommended way to install this library is [through Composer](http://getcomposer.org).
141+
[New to Composer?](http://getcomposer.org/doc/00-intro.md)
142+
143+
This will install the latest supported version:
144+
145+
```bash
146+
$ composer require react/child-process:^0.4.2
147+
```
148+
149+
More details about version upgrades can be found in the [CHANGELOG](CHANGELOG.md).
150+
136151
## Tests
137152

138153
To run the test suite, you first need to clone this repo and then install all
@@ -147,3 +162,7 @@ To run the test suite, go to the project root and run:
147162
```bash
148163
$ php vendor/bin/phpunit
149164
```
165+
166+
## License
167+
168+
MIT, see [LICENSE file](LICENSE).

0 commit comments

Comments
 (0)