diff --git a/src/Pest.php b/src/Pest.php index 79981d1b..3a641f8a 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,5 +6,5 @@ namespace Pest; function version(): string { - return '0.2.2'; + return '0.3.x-dev'; } diff --git a/tests/Unit/Plugins/Version.php b/tests/Unit/Plugins/Version.php index 0bd5feb7..211f11e3 100644 --- a/tests/Unit/Plugins/Version.php +++ b/tests/Unit/Plugins/Version.php @@ -1,6 +1,7 @@ handleArguments(['foo', '--version']); - expect($output->fetch())->toContain('Pest 0.2.2'); + expect($output->fetch())->toContain('Pest ' . version()); }); it('do not outputs version when --version is not used', function () {