From 60feeaa04b7c89bf77543ff686644c93c8d64115 Mon Sep 17 00:00:00 2001 From: paul Date: Tue, 26 Dec 2023 15:38:36 +0100 Subject: [PATCH] chore: prepare release --- CHANGELOG.md | 6 ++++++ src/ConsoleApplication.php | 2 +- tests/Unit/Reporters/TextReporterTest.php | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 413026b..9f8d3be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 6.1.0 + +**Added** + +- Add `php@8.3` support (closes #13). + ## 6.0.1 **Changed** diff --git a/src/ConsoleApplication.php b/src/ConsoleApplication.php index d37185c..a585de5 100644 --- a/src/ConsoleApplication.php +++ b/src/ConsoleApplication.php @@ -21,7 +21,7 @@ class ConsoleApplication extends Application /** * The current phpunitgen-console version. */ - public const VERSION = '6.0.1'; + public const VERSION = '6.1.0'; /** * @var ContainerInterface diff --git a/tests/Unit/Reporters/TextReporterTest.php b/tests/Unit/Reporters/TextReporterTest.php index b93d843..65dc7b4 100644 --- a/tests/Unit/Reporters/TextReporterTest.php +++ b/tests/Unit/Reporters/TextReporterTest.php @@ -64,7 +64,7 @@ public function assertApplicationIsWritten(): void ->with('PhpUnitGen ', false); $this->output->shouldReceive('write') ->once() - ->with('6.0.1', true); + ->with('6.1.0', true); $this->output->shouldReceive('write') ->once() ->with('', true);