Skip to content

Commit be92b9e

Browse files
committed
Prepare v0.5.5 release
1 parent cdc1b6b commit be92b9e

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

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

3+
## 0.5.5 (2017-09-10)
4+
5+
* Fix: Update Socket component to work around sending secure HTTPS requests with PHP < 7.1.4
6+
(#109 by @clue)
7+
38
## 0.5.4 (2017-08-25)
49

510
* Feature: Update Socket dependency to support hosts file on all platforms
@@ -8,7 +13,7 @@
813
This means that HTTP requests to hosts such as `localhost` will now work as
914
expected across all platforms with no changes required:
1015

11-
```
16+
```php
1217
$client = new Client($loop);
1318
$request = $client->request('GET', 'http://localhost/');
1419
$request->on('response', function (Response $response) {
@@ -23,7 +28,7 @@
2328
(#106 by @WyriHaximus)
2429

2530
* Improve test suite by locking Travis distro so new defaults will not break the build
26-
(#211 by @clue)
31+
(#105 by @clue)
2732

2833
## 0.5.2 (2017-06-27)
2934

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,13 @@ See also the [examples](examples).
100100

101101
## Install
102102

103-
The recommended way to install this library is [through Composer](http://getcomposer.org).
104-
[New to Composer?](http://getcomposer.org/doc/00-intro.md)
103+
The recommended way to install this library is [through Composer](https://getcomposer.org).
104+
[New to Composer?](https://getcomposer.org/doc/00-intro.md)
105105

106106
This will install the latest supported version:
107107

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

112112
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.

0 commit comments

Comments
 (0)