From e2b96b23a13ca9b41ab343268dbce3f8ef4d524a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Fri, 28 Aug 2020 14:49:05 +0200 Subject: [PATCH] Prepare v1.6.0 release --- CHANGELOG.md | 18 ++++++++++++++++++ README.md | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29ed920f..56b2c312 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 1.6.0 (2020-08-28) + +* Feature: Support upcoming PHP 8 release. + (#246 by @clue) + +* Feature: Change default socket backlog size to 511. + (#242 by @clue) + +* Fix: Fix closing connection when cancelling during TLS handshake. + (#241 by @clue) + +* Fix: Fix blocking during possible `accept()` race condition + when multiple socket servers listen on same socket address. + (#244 by @clue) + +* Improve test suite, update PHPUnit config and add full core team to the license. + (#243 by @SimonFrings and #245 by @WyriHaximus) + ## 1.5.0 (2020-07-01) * Feature / Fix: Improve error handling and reporting for happy eyeballs and diff --git a/README.md b/README.md index 7b35ac3e..fafc66f8 100644 --- a/README.md +++ b/README.md @@ -1427,7 +1427,7 @@ This project follows [SemVer](https://semver.org/). This will install the latest supported version: ```bash -$ composer require react/socket:^1.5 +$ composer require react/socket:^1.6 ``` See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.