release: v1.13.0

This commit is contained in:
Nuno Maduro
2021-07-28 02:03:24 +01:00
parent 2b5355419a
commit cd9d4acbc2
2 changed files with 8 additions and 1 deletions

View File

@ -4,6 +4,13 @@ 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.13.0 (2021-07-28)](https://github.com/pestphp/pest/compare/v1.12.0...v1.13.0)
### Added
- `toBeIn` expectation ([#363](https://github.com/pestphp/pest/pull/363))
### Fixed
- `skip` with false condition marking test as skipped ([22b822c](https://github.com/pestphp/pest/commit/22b822ce87a3d19d84960fa5c93eb286820b525d))
## [v1.12.0 (2021-07-26)](https://github.com/pestphp/pest/compare/v1.11.0...v1.12.0)
### Added
- `--force` option to override tests in `pest:test` artisan command ([#353](https://github.com/pestphp/pest/pull/353))

View File

@ -6,7 +6,7 @@ namespace Pest;
function version(): string
{
return '1.12.0';
return '1.13.0';
}
function testDirectory(string $file = ''): string