Skip to content

Commit

Permalink
Prepare v0.5.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Dec 22, 2017
1 parent 45cbd17 commit 7d1f765
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,15 @@
# Changelog

## 0.5.1 (2017-12-22)

* Fix: Update Stream dependency to work around SEGFAULT in legacy PHP < 5.4.28
and PHP < 5.5.12
(#50 and #52 by @clue)

* Improve test suite by simplifying test bootstrapping logic via Composer and
adding forward compatibility with PHPUnit 6
(#53, #54 and #55 by @clue)

## 0.5.0 (2017-08-15)

* Forward compatibility: react/event-loop 1.0 and 0.5, react/stream 0.7.2 and 1.0, and Événement 3.0
Expand Down
17 changes: 9 additions & 8 deletions README.md
@@ -1,8 +1,9 @@
# Child Process Component
# Child Process

[![Build Status](https://secure.travis-ci.org/reactphp/child-process.png?branch=master)](http://travis-ci.org/reactphp/child-process) [![Code Climate](https://codeclimate.com/github/reactphp/child-process/badges/gpa.svg)](https://codeclimate.com/github/reactphp/child-process)
[![Build Status](https://travis-ci.org/reactphp/child-process.svg?branch=master)](https://travis-ci.org/reactphp/child-process)

Library for executing child processes.
Event-driven library for executing child processes with
[ReactPHP](https://reactphp.org/).

This library integrates [Program Execution](http://php.net/manual/en/book.exec.php)
with the [EventLoop](https://github.com/reactphp/event-loop).
Expand Down Expand Up @@ -318,21 +319,21 @@ when you want to run this package on Windows.

## Install

The recommended way to install this library is [through Composer](http://getcomposer.org).
[New to Composer?](http://getcomposer.org/doc/00-intro.md)
The recommended way to install this library is [through Composer](https://getcomposer.org).
[New to Composer?](https://getcomposer.org/doc/00-intro.md)

This will install the latest supported version:

```bash
$ composer require react/child-process:^0.4.3
$ composer require react/child-process:^0.5.1
```

More details about version upgrades can be found in the [CHANGELOG](CHANGELOG.md).
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.

## Tests

To run the test suite, you first need to clone this repo and then install all
dependencies [through Composer](http://getcomposer.org):
dependencies [through Composer](https://getcomposer.org):

```bash
$ composer install
Expand Down
4 changes: 2 additions & 2 deletions composer.json
@@ -1,7 +1,7 @@
{
"name": "react/child-process",
"description": "Library for executing child processes.",
"keywords": ["process"],
"description": "Event-driven library for executing child processes with ReactPHP.",
"keywords": ["process", "event-driven", "ReactPHP"],
"license": "MIT",
"require": {
"php": ">=5.3.0",
Expand Down

0 comments on commit 7d1f765

Please sign in to comment.