diff --git a/CHANGELOG.md b/CHANGELOG.md index a1a96255..9a6a7c0a 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/). +## [v1.9.1 (2021-07-11)](https://github.com/pestphp/pest/compare/v1.9.0...v1.9.1) +### Fixed +- Callable `expect` values in higher order tests failing if the value was an existing method name ([#334](https://github.com/pestphp/pest/pull/344)) + ## [v1.9.0 (2021-07-09)](https://github.com/pestphp/pest/compare/v1.8.0...v1.9.0) ### Changed - You may now pass just an exception message when using the `throws` method ([#339](https://github.com/pestphp/pest/pull/339)) diff --git a/src/Pest.php b/src/Pest.php index fa8f2242..f3ac5e45 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ namespace Pest; function version(): string { - return '1.9.0'; + return '1.9.1'; } function testDirectory(string $file = ''): string