mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
docs: updates changelog
This commit is contained in:
@ -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/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
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)
|
## [v0.3.19 (2020-12-27)](https://github.com/pestphp/pest/compare/v0.3.18...v0.3.19)
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fix binary path in `pest:dusk` command ([#239](https://github.com/pestphp/pest/pull/239))
|
- Fix binary path in `pest:dusk` command ([#239](https://github.com/pestphp/pest/pull/239))
|
||||||
|
|||||||
@ -19,10 +19,10 @@
|
|||||||
"require": {
|
"require": {
|
||||||
"php": "^7.3 || ^8.0",
|
"php": "^7.3 || ^8.0",
|
||||||
"nunomaduro/collision": "^5.0",
|
"nunomaduro/collision": "^5.0",
|
||||||
"pestphp/pest-plugin": "^0.3",
|
"pestphp/pest-plugin": "^1.0",
|
||||||
"pestphp/pest-plugin-coverage": "^0.3",
|
"pestphp/pest-plugin-coverage": "^1.0",
|
||||||
"pestphp/pest-plugin-expectations": "^0.3.3",
|
"pestphp/pest-plugin-expectations": "^1.0",
|
||||||
"pestphp/pest-plugin-init": "^0.3",
|
"pestphp/pest-plugin-init": "^1.0",
|
||||||
"phpunit/phpunit": ">= 9.3.7 <= 9.5.0"
|
"phpunit/phpunit": ">= 9.3.7 <= 9.5.0"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
@ -43,8 +43,8 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"illuminate/console": "^7.16.1",
|
"illuminate/console": "^8.0",
|
||||||
"illuminate/support": "^7.16.1",
|
"illuminate/support": "^8.0",
|
||||||
"laravel/dusk": "^6.9.1",
|
"laravel/dusk": "^6.9.1",
|
||||||
"mockery/mockery": "^1.4.1",
|
"mockery/mockery": "^1.4.1",
|
||||||
"pestphp/pest-dev-tools": "dev-master"
|
"pestphp/pest-dev-tools": "dev-master"
|
||||||
@ -74,7 +74,7 @@
|
|||||||
},
|
},
|
||||||
"extra": {
|
"extra": {
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-master": "0.3.x-dev"
|
"dev-master": "1.x-dev"
|
||||||
},
|
},
|
||||||
"pest": {
|
"pest": {
|
||||||
"plugins": [
|
"plugins": [
|
||||||
|
|||||||
@ -6,5 +6,5 @@ namespace Pest;
|
|||||||
|
|
||||||
function version(): string
|
function version(): string
|
||||||
{
|
{
|
||||||
return '0.3.19';
|
return '1.0.0';
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user