From 03a415fde709c2f25539790fecf4d9a31bc3d0eb Mon Sep 17 00:00:00 2001 From: David Buchmann Date: Tue, 26 Nov 2024 12:14:36 +0100 Subject: [PATCH] prepare release --- CHANGELOG.md | 7 +++++-- tests/PromiseExceptionTest.php | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ca0962..13c2e2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.1.0] - 2024-11-26 + ### Changed -- Drop support for PHP version 7.2 + +- Add support for PHP 8.4, drop support for PHP version 7.2 ### Fixed + - Add missing `composer test` command and use it in CI - Fix deprecated usage of prophesize in phpunit tests diff --git a/tests/PromiseExceptionTest.php b/tests/PromiseExceptionTest.php index 93754dd..b0d0276 100644 --- a/tests/PromiseExceptionTest.php +++ b/tests/PromiseExceptionTest.php @@ -27,7 +27,7 @@ final class PromiseExceptionTest extends TestCase public function testExceptionThatIsThrownForGuzzleException( RequestInterface $request, $reason, - string $adapterExceptionClass + string $adapterExceptionClass, ): void { $guzzlePromise = new \GuzzleHttp\Promise\Promise(); $guzzlePromise->reject($reason);