Skip to content

Commit e11eef9

Browse files
committed
Prepare v0.5.4 release
1 parent 26fddc2 commit e11eef9

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

CHANGELOG.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,30 @@
11
# Changelog
22

3-
## 0.5.2 (2017-08-16)
3+
## 0.5.4 (2017-08-25)
44

5-
* Improvement: Target evenement 3.0 a long side 2.0
5+
* Feature: Update Socket dependency to support hosts file on all platforms
6+
(#108 by @clue)
7+
8+
This means that HTTP requests to hosts such as `localhost` will now work as
9+
expected across all platforms with no changes required:
10+
11+
```
12+
$client = new Client($loop);
13+
$request = $client->request('GET', 'http://localhost/');
14+
$request->on('response', function (Response $response) {
15+
// …
16+
});
17+
$request->end();
18+
```
19+
20+
## 0.5.3 (2017-08-16)
21+
22+
* Feature: Target evenement 3.0 a long side 2.0
623
(#106 by @WyriHaximus)
724
25+
* Improve test suite by locking Travis distro so new defaults will not break the build
26+
(#211 by @clue)
27+
828
## 0.5.2 (2017-06-27)
929
1030
* Feature: Support passing arrays for request header values

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,15 @@ The recommended way to install this library is [through Composer](http://getcomp
106106
This will install the latest supported version:
107107

108108
```bash
109-
$ composer require react/http-client:^0.5.3
109+
$ composer require react/http-client:^0.5.4
110110
```
111111

112-
More details about version upgrades can be found in the [CHANGELOG](CHANGELOG.md).
112+
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
113+
114+
This project aims to run on any platform and thus does not require any PHP
115+
extensions and supports running on legacy PHP 5.3 through current PHP 7+ and
116+
HHVM.
117+
It's *highly recommended to use PHP 7+* for this project.
113118

114119
## Tests
115120

0 commit comments

Comments
 (0)