From 41c06aee825766418fea430515859e9657a50bcd Mon Sep 17 00:00:00 2001 From: Simon Frings Date: Fri, 23 Feb 2024 10:56:33 +0100 Subject: [PATCH] Prepare v1.2.0 release --- CHANGELOG.md | 25 +++++++++++++++++++++++++ README.md | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54a852b..b661233 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## 1.2.0 (2024-02-23) + +* Feature: Forward compatibility with Promise v3. + (#80 by @SimonFrings) + +* Feature: Simplify usage by supporting new [default loop](https://reactphp.org/event-loop/#loop) and new Socket API. + (#70 by @clue and #71 by @SimonFrings) + + ```php + // old (still supported) + $factory = new Clue\React\Ami\Factory($loop); + + // new (using default loop) + $factory = new Clue\React\Ami\Factory(); + ``` + +* Feature: Full PHP 8.3 compatibility. + (#67, #73 and #79 by @SimonFrings) + +* Minor documentation improvements. + (#69 by @PaulRotmann and #77 by @yadaiio) + +* Improve test suite and use GitHub actions for continuous integration (CI). + (#67 and #78 by @SimonFrings) + ## 1.1.0 (2020-10-09) * Feature: Support authentication with URL-encoded special characters. diff --git a/README.md b/README.md index c8ec30f..803a5b0 100644 --- a/README.md +++ b/README.md @@ -557,7 +557,7 @@ This project follows [SemVer](https://semver.org/). This will install the latest supported version: ```bash -composer require clue/ami-react:^1.1 +composer require clue/ami-react:^1.2 ``` See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.