From 1680613e1250070ab6ccfcbec429d04f1830f5bc Mon Sep 17 00:00:00 2001 From: luke Date: Sat, 19 Jun 2021 14:42:29 +0100 Subject: [PATCH] docs: update changelog --- CHANGELOG.md | 5 +++++ src/Pest.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab56a6b0..38a673cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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.7.0 (2021-06-19)](https://github.com/pestphp/pest/compare/v1.6.0...v1.7.0) +### Added +- Support for non-callable values in the sequence method, which will be passed as `toEqual` ([#323](https://github.com/pestphp/pest/pull/323)) +- Support for nested Higher Order Expectations ([#324](https://github.com/pestphp/pest/pull/324)) + ## [v1.6.0 (2021-06-18)](https://github.com/pestphp/pest/compare/v1.5.0...v1.6.0) ### Added - Adds a new `json` expectation method to improve testing with JSON strings ([#325](https://github.com/pestphp/pest/pull/325)) diff --git a/src/Pest.php b/src/Pest.php index 847a15fc..6fc5894b 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ namespace Pest; function version(): string { - return '1.6.0'; + return '1.7.0'; } function testDirectory(string $file = ''): string