Skip to content

Commit

Permalink
Prepare v0.5.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Sep 10, 2017
1 parent cdc1b6b commit be92b9e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.5.5 (2017-09-10)

* Fix: Update Socket component to work around sending secure HTTPS requests with PHP < 7.1.4
(#109 by @clue)

## 0.5.4 (2017-08-25)

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

```
```php
$client = new Client($loop);
$request = $client->request('GET', 'http://localhost/');
$request->on('response', function (Response $response) {
Expand All @@ -23,7 +28,7 @@
(#106 by @WyriHaximus)

* Improve test suite by locking Travis distro so new defaults will not break the build
(#211 by @clue)
(#105 by @clue)

## 0.5.2 (2017-06-27)

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ See also the [examples](examples).

## 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/http-client:^0.5.4
$ composer require react/http-client:^0.5.5
```

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

0 comments on commit be92b9e

Please sign in to comment.