Skip to content

Commit bd19f2f

Browse files
committed
Prepare v0.7.1 release
1 parent 34f1920 commit bd19f2f

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

CHANGELOG.md

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

3+
## 0.7.1 (2017-05-20)
4+
5+
* Feature: Add optional `$writeChunkSize` parameter to limit maximum number of
6+
bytes to write at once.
7+
(#105 by @clue)
8+
9+
```php
10+
$stream = new WritableResourceStream(STDOUT, $loop, null, 8192);
11+
```
12+
13+
* Ignore HHVM test failures for now until Travis tests work again
14+
(#106 by @clue)
15+
316
## 0.7.0 (2017-05-04)
417

518
* Removed / BC break: Remove deprecated and unneeded functionality

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ The recommended way to install this library is [through Composer](http://getcomp
11771177
This will install the latest supported version:
11781178

11791179
```bash
1180-
$ composer require react/stream:^0.7
1180+
$ composer require react/stream:^0.7.1
11811181
```
11821182

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

0 commit comments

Comments
 (0)