Skip to content

Commit

Permalink
Prepare v0.7.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Oct 11, 2017
1 parent 1da4a66 commit 5c7db52
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
24 changes: 20 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,29 @@
# Changelog

## 0.7.4 (2017-10-11)

* Fix: Remove event listeners from `CompositeStream` once closed and
remove undocumented left-over `close` event argument
(#116 by @clue)

* Minor documentation improvements: Fix wrong class name in example,
fix typos in README and
fix forward compatibility with upcoming EventLoop releases in example
(#113 by @docteurklein and #114 and #115 by @clue)

* Improve test suite by running against Mac OS X on Travis
(#112 by @clue)

## 0.7.3 (2017-08-05)

* Improvement: Support Événement 3.0 a long side 2.0 and 1.0
(#108 by @WyriHaximus)
(#108 by @WyriHaximus)

* Readme: Corrected loop initialization in usage example
(#109 by @pulyavin)
(#109 by @pulyavin)

* Travis: Lock linux distribution preventing future builds from breaking
(#110 by @clue)
(#110 by @clue)

## 0.7.2 (2017-06-15)

Expand Down Expand Up @@ -129,7 +145,7 @@
```

* Fix / BC Break: Enforce using non-blocking I/O
(#47 by @clue)
(#46 by @clue)

> BC note: This is known to affect process pipes on Windows which do not
support non-blocking I/O and could thus block the whole EventLoop previously.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1171,13 +1171,13 @@ $loop->run();

## 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/stream:^0.7.3
$ composer require react/stream:^0.7.4
```

More details about version upgrades can be found in the [CHANGELOG](CHANGELOG.md).
Expand All @@ -1190,7 +1190,7 @@ performance improvements.
## 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

0 comments on commit 5c7db52

Please sign in to comment.