Skip to content

Commit a41bbff

Browse files
committed
Prepare v0.7.5 release
1 parent 9a54b9a commit a41bbff

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

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.7.5 (2017-11-20)
4+
5+
* Fix: Igore excessive `fopen()` mode flags for `WritableResourceStream`
6+
(#119 by @clue)
7+
8+
* Fix: Fix forward compatibility with upcoming EventLoop releases
9+
(#121 by @clue)
10+
11+
* Restructure examples to ease getting started
12+
(#123 by @clue)
13+
14+
* Improve test suite by adding forward compatibility with PHPUnit 6 and
15+
ignore Mac OS X test failures for now until Travis tests work again
16+
(#122 by @gabriel-caruso and #120 by @clue)
17+
318
## 0.7.4 (2017-10-11)
419

520
* Fix: Remove event listeners from `CompositeStream` once closed and

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
Event-driven readable and writable streams for non-blocking I/O in [ReactPHP](https://reactphp.org/).
66

77
In order to make the [EventLoop](https://github.com/reactphp/event-loop)
8-
easier to use, this component introduces the concept of "streams".
8+
easier to use, this component introduces the powerful concept of "streams".
9+
Streams allow you to efficiently process huge amounts of data (such as a multi
10+
Gigabyte file download) in small chunks without having to store everything in
11+
memory at once.
912
They are very similar to the streams found in PHP itself,
1013
but have an interface more suited for async, non-blocking I/O.
11-
Mainly it provides interfaces for readable and writable streams, plus a file
12-
descriptor based implementation with an in-memory write buffer.
1314

1415
**Table of contents**
1516

@@ -1177,7 +1178,7 @@ The recommended way to install this library is [through Composer](https://getcom
11771178
This will install the latest supported version:
11781179

11791180
```bash
1180-
$ composer require react/stream:^0.7.4
1181+
$ composer require react/stream:^0.7.5
11811182
```
11821183

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

0 commit comments

Comments
 (0)