From 328427bfdb1c21687afff0eb83c64e417b4539c6 Mon Sep 17 00:00:00 2001 From: luke Date: Wed, 21 Jul 2021 12:59:45 +0100 Subject: [PATCH] docs: update changelog --- CHANGELOG.md | 10 ++++++++++ src/Pest.php | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e602ee99..51343a9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ 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.11.0 (2021-07-21)](https://github.com/pestphp/pest/compare/v1.10.0...v1.11.0) +### Added +- Support for interacting with datasets in higher order tests ([#352](https://github.com/pestphp/pest/pull/352)) + +### Changed +- The unit test stub now uses the expectation API ([#348](https://github.com/pestphp/pest/pull/348)) + +### Fixed +- PhpStorm will no longer show 0 assertions in the output ([#349](https://github.com/pestphp/pest/pull/349)) + ## [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)) diff --git a/src/Pest.php b/src/Pest.php index e694346c..cdc57677 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ namespace Pest; function version(): string { - return '1.10.0'; + return '1.11.0'; } function testDirectory(string $file = ''): string