From be92b9ecc578c720717ed23e616c2ed27f28e089 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Sun, 10 Sep 2017 11:06:12 +0200 Subject: [PATCH] Prepare v0.5.5 release --- CHANGELOG.md | 9 +++++++-- README.md | 6 +++--- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4b877e..ff47266 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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) { @@ -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) diff --git a/README.md b/README.md index 6d17a2b..d7395ed 100644 --- a/README.md +++ b/README.md @@ -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.