From 6b8feed08a44ad9f5a821a7b536d0d06a619c430 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Mon, 18 Jan 2021 09:35:53 +0000 Subject: [PATCH] docs: update changelog --- CHANGELOG.md | 7 +++++++ src/Pest.php | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc2776f3..19d546f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.0.0 (2021-01-18)](https://github.com/pestphp/pest/compare/v1.0.0...v1.0.1) +### Added +- Support for PHPUnit 9.5.1 ([#261](https://github.com/pestphp/pest/pull/261)) + +### Fixed +- Fix `TestCase@expect` PHPDoc tag ([#251](https://github.com/pestphp/pest/pull/251)) + ## [v1.0.0 (2021-01-03)](https://github.com/pestphp/pest/compare/v0.3.19...v1.0.0) ### Added - `pest:test --dusk` option ([#245](https://github.com/pestphp/pest/pull/245)) diff --git a/src/Pest.php b/src/Pest.php index e0767271..712d222e 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,5 +6,5 @@ namespace Pest; function version(): string { - return '1.0.0'; + return '1.0.1'; }