From d90ddf889cca8acf9f9a7ccbb36c34af8926f082 Mon Sep 17 00:00:00 2001 From: luke Date: Mon, 12 Jul 2021 11:54:40 +0100 Subject: [PATCH] docs: update changelog --- CHANGELOG.md | 4 ++++ src/Pest.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a6a7c0a..e602ee99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ 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.10.0 (2021-07-12)](https://github.com/pestphp/pest/compare/v1.9.1...v1.10.0) +### Added +- The ability to use higher order expectations inside higher order tests ([#341](https://github.com/pestphp/pest/pull/341)) + ## [v1.9.1 (2021-07-11)](https://github.com/pestphp/pest/compare/v1.9.0...v1.9.1) ### Fixed - Callable `expect` values in higher order tests failing if the value was an existing method name ([#334](https://github.com/pestphp/pest/pull/344)) diff --git a/src/Pest.php b/src/Pest.php index f3ac5e45..e694346c 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ namespace Pest; function version(): string { - return '1.9.1'; + return '1.10.0'; } function testDirectory(string $file = ''): string