From 0fadf9a02c5fcd212a7123f704c7825d2d96a41c Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Mon, 21 Sep 2020 20:31:32 +0100 Subject: [PATCH] chore: update changelog --- CHANGELOG.md | 5 +++++ src/Pest.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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'; }