diff --git a/CHANGELOG.md b/CHANGELOG.md index 3555f7e7..0911cdd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.3.6 (2020-09-21)](https://github.com/pestphp/pest/compare/v0.3.5...v0.3.6) +### Added +- `toMatch` expectation ([#191](https://github.com/pestphp/pest/pull/191)) +- `toMatchConstraint` expectation ([#190](https://github.com/pestphp/pest/pull/190)) + ## [v0.3.5 (2020-09-16)](https://github.com/pestphp/pest/compare/v0.3.4...v0.3.5) ### Added - `toStartWith` and `toEndWith` expectations ([#187](https://github.com/pestphp/pest/pull/187)) diff --git a/src/Pest.php b/src/Pest.php index f1c96550..24c88df0 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,5 +6,5 @@ namespace Pest; function version(): string { - return '0.3.1'; + return '0.3.6'; }