From 73a859ee563fe96944ba39b191dceca28ef703c2 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Wed, 7 Jun 2023 21:17:10 +0200 Subject: [PATCH 1/2] chore: bumps phpunit dependency --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 0b844d2d..de9de44e 100644 --- a/composer.json +++ b/composer.json @@ -23,11 +23,11 @@ "nunomaduro/termwind": "^1.15.1", "pestphp/pest-plugin": "^2.0.1", "pestphp/pest-plugin-arch": "^2.2.0", - "phpunit/phpunit": "^10.2.0" + "phpunit/phpunit": "^10.2.1" }, "conflict": { "webmozart/assert": "<1.11.0", - "phpunit/phpunit": ">10.2.0" + "phpunit/phpunit": ">10.2.1" }, "autoload": { "psr-4": { From 3c20e8114e5d2f5e39cf013f0f9b8ebc0ac1a6fa Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Wed, 7 Jun 2023 21:19:04 +0200 Subject: [PATCH 2/2] release: v2.6.3 --- CHANGELOG.md | 5 +++++ src/Pest.php | 2 +- tests/.snapshots/help-command.txt | 2 +- tests/.snapshots/version-command.txt | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f47f6075..442be0e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## [v2.6.3 (2023-06-07)](https://github.com/pestphp/pest/compare/v2.6.2...v2.6.3) + +### Chore +- Bumps PHPUnit to `^10.2.1` ([73a859e](https://github.com/pestphp/pest/commit/73a859ee563fe96944ba39b191dceca28ef703c2)) + ## [v2.6.2 (2023-06-02)](https://github.com/pestphp/pest/compare/v2.6.1...v2.6.2) ### Chore diff --git a/src/Pest.php b/src/Pest.php index 79332ddf..d7b10230 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ namespace Pest; function version(): string { - return '2.6.2'; + return '2.6.3'; } function testDirectory(string $file = ''): string diff --git a/tests/.snapshots/help-command.txt b/tests/.snapshots/help-command.txt index 5709ac54..bd31d3bd 100644 --- a/tests/.snapshots/help-command.txt +++ b/tests/.snapshots/help-command.txt @@ -1,5 +1,5 @@ - Pest Testing Framework 2.6.2. + Pest Testing Framework 2.6.3. USAGE: pest [options] diff --git a/tests/.snapshots/version-command.txt b/tests/.snapshots/version-command.txt index 151608d7..268c7fb5 100644 --- a/tests/.snapshots/version-command.txt +++ b/tests/.snapshots/version-command.txt @@ -1,3 +1,3 @@ - Pest Testing Framework 2.6.2. + Pest Testing Framework 2.6.3.