From a0f6814c385523a34773a6f1b2f620d390e579d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Thu, 8 Feb 2018 12:18:52 +0100 Subject: [PATCH] Prepare v0.5.7 release --- CHANGELOG.md | 14 ++++++++++++++ README.md | 5 ++--- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 270cad3..15db4d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.5.7 (2018-02-08) + +* Fix: Ignore excessive whitespace in chunk header for `Transfer-Encoding: chunked` + (#123 by @DangerLifter and @clue) + +* Fix: Ignore invalid incoming `Transfer-Encoding` response header + (#122 by @clue) + +* Improve documentation for `Client` (and advanced `Connector`) + (#111 by @jsor and #121 by @clue) + +* Improve test suite by adding support for PHPUnit 6 + (#112 by @carusogabriel) + ## 0.5.6 (2017-09-17) * Feature: Update Socket component to support HTTP over Unix domain sockets (UDS) diff --git a/README.md b/README.md index 99576a6..2c98d6c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # HttpClient [![Build Status](https://travis-ci.org/reactphp/http-client.svg?branch=master)](https://travis-ci.org/reactphp/http-client) -[![Code Climate](https://codeclimate.com/github/reactphp/http-client/badges/gpa.svg)](https://codeclimate.com/github/reactphp/http-client) Event-driven, streaming HTTP client for [ReactPHP](https://reactphp.org). @@ -165,13 +164,13 @@ The recommended way to install this library is [through Composer](https://getcom This will install the latest supported version: ```bash -$ composer require react/http-client:^0.5.6 +$ composer require react/http-client:^0.5.7 ``` See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades. This project aims to run on any platform and thus does not require any PHP -extensions and supports running on legacy PHP 5.3 through current PHP 7+ and +extensions and supports running on legacy PHP 5.4 through current PHP 7+ and HHVM. It's *highly recommended to use PHP 7+* for this project.