From e4e9cb09e41c05b0d8ff50ec3c432daaa354695d Mon Sep 17 00:00:00 2001 From: luke Date: Fri, 9 Jul 2021 09:15:22 +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 d6c0f324..a1a96255 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.9.0 (2021-07-09)](https://github.com/pestphp/pest/compare/v1.8.0...v1.9.0) +### Changed +- You may now pass just an exception message when using the `throws` method ([#339](https://github.com/pestphp/pest/pull/339)) + ## [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)) diff --git a/src/Pest.php b/src/Pest.php index 069a71d0..fa8f2242 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ namespace Pest; function version(): string { - return '1.8.0'; + return '1.9.0'; } function testDirectory(string $file = ''): string