diff --git a/CHANGELOG.md b/CHANGELOG.md index 43fee703..1ce55eb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ 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/). +## [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)) + ## [v0.3.18 (2020-12-26)](https://github.com/pestphp/pest/compare/v0.3.17...v0.3.18) ### Added - `toBeJson()` expectation ([plugin-expectations#2](https://github.com/pestphp/pest-plugin-expectations/pull/2)) diff --git a/src/Pest.php b/src/Pest.php index 857eacdf..b14f2f42 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,5 +6,5 @@ namespace Pest; function version(): string { - return '0.3.18'; + return '0.3.19'; }