From 7a699e16dbd2145a5c891e765483e8ba10a60fbf Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Wed, 22 Mar 2023 10:05:58 +0000 Subject: [PATCH] release: v2.2.0 --- CHANGELOG.md | 10 ++++++++++ src/Pest.php | 2 +- tests/.snapshots/help-command.txt | 2 +- tests/.snapshots/version-command.txt | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 811f5e15f..dce9110f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ ## Unreleased +## [v2.2.0 (2023-03-22)](https://github.com/pestphp/pest/compare/v2.1.0...v2.2.0) + +### Added +- Improved error messages on dataset arguments mismatch ([#698](https://github.com/pestphp/pest/pull/698)) +- Allows the usage of `DateTimeInterface` on multiple expectations ([#716](https://github.com/pestphp/pest/pull/716)) + +### Fixed +- `--dirty` option on Windows environments ([#721](https://github.com/pestphp/pest/pull/721)) +- Parallel exit code when `phpunit.xml` is outdated ([14dd5cb](https://github.com/pestphp/pest/commit/14dd5cb57b9432300ac4e8095f069941cb43bdb5)) + ## [v2.1.0 (2023-03-21)](https://github.com/pestphp/pest/compare/v2.0.2...v2.1.0) ### Added diff --git a/src/Pest.php b/src/Pest.php index 32978f6e0..c7cda2609 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ function version(): string { - return '2.1.0'; + return '2.2.0'; } function testDirectory(string $file = ''): string diff --git a/tests/.snapshots/help-command.txt b/tests/.snapshots/help-command.txt index 29a623940..a67730b86 100644 --- a/tests/.snapshots/help-command.txt +++ b/tests/.snapshots/help-command.txt @@ -1,5 +1,5 @@ - Pest Testing Framework 2.1.0. + Pest Testing Framework 2.2.0. USAGE: pest [options] diff --git a/tests/.snapshots/version-command.txt b/tests/.snapshots/version-command.txt index a50a10aee..e83c7f204 100644 --- a/tests/.snapshots/version-command.txt +++ b/tests/.snapshots/version-command.txt @@ -1,3 +1,3 @@ - Pest Testing Framework 2.1.0. + Pest Testing Framework 2.2.0.