diff --git a/CHANGELOG.md b/CHANGELOG.md index 442be0e4..73065184 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## Unreleased +## [v2.7.0 (2023-06-15)](https://github.com/pestphp/pest/compare/v2.6.3...v2.7.0) + +### Added +- Support for unexpected output on printer ([eb9f31e](https://github.com/pestphp/pest/commit/eb9f31edeb00a88c449874f3d48156128a00fff8)) + +### Chore +- Bumps PHPUnit to `^10.2.2` ([0e5470b](https://github.com/pestphp/pest/commit/0e5470b192b259ba2db7c02a50371216c98fc0a6)) + ## [v2.6.3 (2023-06-07)](https://github.com/pestphp/pest/compare/v2.6.2...v2.6.3) ### Chore diff --git a/src/Pest.php b/src/Pest.php index d7b10230..d29d648d 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ namespace Pest; function version(): string { - return '2.6.3'; + return '2.7.0'; } function testDirectory(string $file = ''): string diff --git a/tests/.snapshots/help-command.txt b/tests/.snapshots/help-command.txt index bd31d3bd..653bcdb3 100644 --- a/tests/.snapshots/help-command.txt +++ b/tests/.snapshots/help-command.txt @@ -1,5 +1,5 @@ - Pest Testing Framework 2.6.3. + Pest Testing Framework 2.7.0. USAGE: pest [options] diff --git a/tests/.snapshots/version-command.txt b/tests/.snapshots/version-command.txt index 268c7fb5..3fb5c817 100644 --- a/tests/.snapshots/version-command.txt +++ b/tests/.snapshots/version-command.txt @@ -1,3 +1,3 @@ - Pest Testing Framework 2.6.3. + Pest Testing Framework 2.7.0.