From c73bcdc228eca627992c0088f7bc30b794fde8da Mon Sep 17 00:00:00 2001 From: Simon Frings Date: Mon, 25 Oct 2021 09:59:57 +0200 Subject: [PATCH] Prepare v2.5.0 release --- CHANGELOG.md | 19 +++++++++++++++++++ README.md | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c22453..f006218 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 2.5.0 (2021-10-25) + +* Feature: Simplify usage by supporting new default loop + (#99 by @clue) + + ```php + // old (still supported) + $stdio = new Clue\React\Stdio\Stdio($loop); + + // new (using default loop) + $stdio = new Clue\React\Stdio\Stdio(); + ``` + +* Maintenance: Improve code examples and documentation + (#100 by @clue and #98 by @PaulRotmann) + +* Maintenance: Use GitHub actions for continuous integration (CI) + (#97 by @SimonFrings) + ## 2.4.0 (2020-11-20) * Fix: Refactor executing functional tests without ext-readline. diff --git a/README.md b/README.md index 5c2c02c..867d017 100644 --- a/README.md +++ b/README.md @@ -642,7 +642,7 @@ This project follows [SemVer](https://semver.org/). This will install the latest supported version: ```bash -$ composer require clue/stdio-react:^2.4 +$ composer require clue/stdio-react:^2.5 ``` See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.