From cd9d4acbc2b5e1db65f428037737aad1d2980063 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Wed, 28 Jul 2021 02:03:24 +0100 Subject: [PATCH] release: v1.13.0 --- CHANGELOG.md | 7 +++++++ src/Pest.php | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c59eb65..0b05a97d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) diff --git a/src/Pest.php b/src/Pest.php index 38526338..d9efe05f 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ namespace Pest; function version(): string { - return '1.12.0'; + return '1.13.0'; } function testDirectory(string $file = ''): string