From 0398d4223b3043ade544485b0b64eaca118d9f68 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Thu, 27 Aug 2020 22:47:10 +0200 Subject: [PATCH] docs: updates changelog --- CHANGELOG.md | 9 +++++++++ composer.json | 2 +- src/Pest.php | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7541163e..a1ba7825 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.3.0 (2020-08-27)](https://github.com/pestphp/pest/compare/v0.2.3...v0.3.0) +### Added +- Expectation API (TODO) +- PHPUnit 9.3 and PHP 8 support ([#128](https://github.com/pestphp/pest/pull/128)) +- Fowards `$this` calls to globals ([#169](https://github.com/pestphp/pest/pull/169)) + +### Fixed +- don't decorate output if --colors=never is set ([36b879f](https://github.com/pestphp/pest/commit/36b879f97d7b187c87a94eb60af5b7d3b7253d56)) + ## [v0.2.3 (2020-07-01)](https://github.com/pestphp/pest/compare/v0.2.2...v0.2.3) ### Added - `--init` and `pest:install` artisan command output changes ([#118](https://github.com/pestphp/pest/pull/118), [db7c4b1](https://github.com/pestphp/pest/commit/db7c4b174f0974969450dda71dcd649ef0c073a3)) diff --git a/composer.json b/composer.json index 205166e9..6334bb3b 100644 --- a/composer.json +++ b/composer.json @@ -72,7 +72,7 @@ }, "extra": { "branch-alias": { - "dev-master": "0.3.x-dev" + "dev-master": "0.4.x-dev" }, "pest": { "plugins": [ diff --git a/src/Pest.php b/src/Pest.php index 3a641f8a..0565d966 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,5 +6,5 @@ namespace Pest; function version(): string { - return '0.3.x-dev'; + return '0.3.0'; }