Skip to content

Commit

Permalink
Prepare v0.7.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Nov 20, 2017
1 parent 9a54b9a commit a41bbff
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 0.7.5 (2017-11-20)

* Fix: Igore excessive `fopen()` mode flags for `WritableResourceStream`
(#119 by @clue)

* Fix: Fix forward compatibility with upcoming EventLoop releases
(#121 by @clue)

* Restructure examples to ease getting started
(#123 by @clue)

* Improve test suite by adding forward compatibility with PHPUnit 6 and
ignore Mac OS X test failures for now until Travis tests work again
(#122 by @gabriel-caruso and #120 by @clue)

## 0.7.4 (2017-10-11)

* Fix: Remove event listeners from `CompositeStream` once closed and
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@
Event-driven readable and writable streams for non-blocking I/O in [ReactPHP](https://reactphp.org/).

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

**Table of contents**

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

```bash
$ composer require react/stream:^0.7.4
$ composer require react/stream:^0.7.5
```

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

0 comments on commit a41bbff

Please sign in to comment.