From ba06c5a76d95bbdef93aa4e05b489c3335b6c8c1 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Sat, 25 Sep 2021 13:52:12 +0100 Subject: [PATCH] release: v1.20.0 --- CHANGELOG.md | 11 +++++++++++ src/Pest.php | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 995ea265..45042cc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ 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.20.0 (2021-09-25)](https://github.com/pestphp/pest/compare/v1.19.0...v1.20.0) +### Added +- `throwsIf` test call ([#371](https://github.com/pestphp/pest/pull/371)) +- `--ci` CLI option to ignore development options like `->local()` ([#405](https://github.com/pestphp/pest/pull/405)) +- `when` conditional expectation ([#406](https://github.com/pestphp/pest/pull/406)) +- `unless` conditional expectation ([b43a598](https://github.com/pestphp/pest/commit/b43a59868d5b790a28cbb29c6110c9f068b0b812)) +- `match` conditional expectation ([#407](https://github.com/pestphp/pest/pull/407)) + +### Fixed +- `sequence` with more expectations than iterable elements ([#399](https://github.com/pestphp/pest/pull/399)) + ## [v1.19.0 (2021-09-20)](https://github.com/pestphp/pest/compare/v1.18.0...v1.19.0) ### Added - PHP 8.1 support ([e6c7d68](https://github.com/pestphp/pest/commit/e6c7d68defaec8efe01e71e15dd8d8c45b0cf60f)) diff --git a/src/Pest.php b/src/Pest.php index dec7af04..56a43e84 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ namespace Pest; function version(): string { - return '1.18.0'; + return '1.20.0'; } function testDirectory(string $file = ''): string