chore: update changelog

This commit is contained in:
Owen Voke
2020-09-21 20:31:32 +01:00
parent 2b138ad76b
commit 0fadf9a02c
2 changed files with 6 additions and 1 deletions

View File

@ -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))

View File

@ -6,5 +6,5 @@ namespace Pest;
function version(): string
{
return '0.3.1';
return '0.3.6';
}