From 005e7d518a1e69fc8d321e3f719c9024d4d4200d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Fri, 23 Oct 2020 14:32:10 +0200 Subject: [PATCH] Prepare v1.6.0 release --- CHANGELOG.md | 8 ++++++++ README.md | 24 ++++++++++++------------ 2 files changed, 20 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dacbcfd..8fa95a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.6.0 (2020-10-23) + +* Enhanced documentation for ReactPHP's new HTTP client. + (#35 and #37 by @SimonFrings) + +* Improve test suite, prepare PHP 8 support and support PHPUnit 9.3. + (#36 by @SimonFrings) + ## 1.5.0 (2020-06-19) * Feature / Fix: Support PHP 7.4 by skipping unneeded cleanup of exception trace args. diff --git a/README.md b/README.md index bbdd49a..ec9fb27 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ existing higher-level protocol implementation. Send any number of HTTP CONNECT requests in parallel and process their responses as soon as results come in. The Promise-based design provides a *sane* interface to working with out of - bound responses and possible connection errors. + order responses and possible connection errors. * **Standard interfaces** - Allows easy integration with existing higher-level components by implementing ReactPHP's standard @@ -37,16 +37,16 @@ existing higher-level protocol implementation. * [Support us](#support-us) * [Quickstart example](#quickstart-example) * [Usage](#usage) - * [ProxyConnector](#proxyconnector) - * [Plain TCP connections](#plain-tcp-connections) - * [Secure TLS connections](#secure-tls-connections) - * [HTTP requests](#http-requests) - * [Connection timeout](#connection-timeout) - * [DNS resolution](#dns-resolution) - * [Authentication](#authentication) - * [Advanced HTTP headers](#advanced-http-headers) - * [Advanced secure proxy connections](#advanced-secure-proxy-connections) - * [Advanced Unix domain sockets](#advanced-unix-domain-sockets) + * [ProxyConnector](#proxyconnector) + * [Plain TCP connections](#plain-tcp-connections) + * [Secure TLS connections](#secure-tls-connections) + * [HTTP requests](#http-requests) + * [Connection timeout](#connection-timeout) + * [DNS resolution](#dns-resolution) + * [Authentication](#authentication) + * [Advanced HTTP headers](#advanced-http-headers) + * [Advanced secure proxy connections](#advanced-secure-proxy-connections) + * [Advanced Unix domain sockets](#advanced-unix-domain-sockets) * [Install](#install) * [Tests](#tests) * [License](#license) @@ -422,7 +422,7 @@ This project follows [SemVer](https://semver.org/). This will install the latest supported version: ```bash -$ composer require clue/http-proxy-react:^1.5 +$ composer require clue/http-proxy-react:^1.6 ``` See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.