diff --git a/CHANGELOG.md b/CHANGELOG.md index fdd13ce..a8f34ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.7.1 (2017-05-20) + +* Feature: Add optional `$writeChunkSize` parameter to limit maximum number of + bytes to write at once. + (#105 by @clue) + + ```php + $stream = new WritableResourceStream(STDOUT, $loop, null, 8192); + ``` + +* Ignore HHVM test failures for now until Travis tests work again + (#106 by @clue) + ## 0.7.0 (2017-05-04) * Removed / BC break: Remove deprecated and unneeded functionality diff --git a/README.md b/README.md index 63d57e0..d2c3d28 100644 --- a/README.md +++ b/README.md @@ -1177,7 +1177,7 @@ The recommended way to install this library is [through Composer](http://getcomp This will install the latest supported version: ```bash -$ composer require react/stream:^0.7 +$ composer require react/stream:^0.7.1 ``` More details about version upgrades can be found in the [CHANGELOG](CHANGELOG.md).