From 7d6a86adc7fb2d07323e1d4b61514a4253404272 Mon Sep 17 00:00:00 2001 From: luke Date: Thu, 8 Jul 2021 18:11:02 +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 7d8a53e4..d6c0f324 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.8.0 (2021-07-08)](https://github.com/pestphp/pest/compare/v1.7.1...v1.8.0) +### Added +- A new `tap` and test case aware `expect` methods for higher order tests ([#331](https://github.com/pestphp/pest/pull/331)) +- Access to test case methods and properties when using `skip` ([#338](https://github.com/pestphp/pest/pull/338)) + ## [v1.7.1 (2021-06-24)](https://github.com/pestphp/pest/compare/v1.7.0...v1.7.1) ### Fixed - The `and` method not being usable in Higher Order expectations ([#330](https://github.com/pestphp/pest/pull/330)) diff --git a/src/Pest.php b/src/Pest.php index d54a4413..069a71d0 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ namespace Pest; function version(): string { - return '1.7.1'; + return '1.8.0'; } function testDirectory(string $file = ''): string