diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ce55eb6..dc2776f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [v1.0.0 (2021-01-03)](https://github.com/pestphp/pest/compare/v0.3.19...v1.0.0) +### Added +- `pest:test --dusk` option ([#245](https://github.com/pestphp/pest/pull/245)) + +### Changed +- Stable version +- Updates init structure ([#240](https://github.com/pestphp/pest/pull/240)) + ## [v0.3.19 (2020-12-27)](https://github.com/pestphp/pest/compare/v0.3.18...v0.3.19) ### Fixed - Fix binary path in `pest:dusk` command ([#239](https://github.com/pestphp/pest/pull/239)) diff --git a/composer.json b/composer.json index 1cfbf1e3..0df70749 100644 --- a/composer.json +++ b/composer.json @@ -19,10 +19,10 @@ "require": { "php": "^7.3 || ^8.0", "nunomaduro/collision": "^5.0", - "pestphp/pest-plugin": "^0.3", - "pestphp/pest-plugin-coverage": "^0.3", - "pestphp/pest-plugin-expectations": "^0.3.3", - "pestphp/pest-plugin-init": "^0.3", + "pestphp/pest-plugin": "^1.0", + "pestphp/pest-plugin-coverage": "^1.0", + "pestphp/pest-plugin-expectations": "^1.0", + "pestphp/pest-plugin-init": "^1.0", "phpunit/phpunit": ">= 9.3.7 <= 9.5.0" }, "autoload": { @@ -43,8 +43,8 @@ ] }, "require-dev": { - "illuminate/console": "^7.16.1", - "illuminate/support": "^7.16.1", + "illuminate/console": "^8.0", + "illuminate/support": "^8.0", "laravel/dusk": "^6.9.1", "mockery/mockery": "^1.4.1", "pestphp/pest-dev-tools": "dev-master" @@ -74,7 +74,7 @@ }, "extra": { "branch-alias": { - "dev-master": "0.3.x-dev" + "dev-master": "1.x-dev" }, "pest": { "plugins": [ diff --git a/src/Pest.php b/src/Pest.php index b14f2f42..e0767271 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,5 +6,5 @@ namespace Pest; function version(): string { - return '0.3.19'; + return '1.0.0'; }