From 729638a3bb560fb680c9f8bf973ca62e216b767a Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Tue, 15 Jun 2021 23:06:43 +0100 Subject: [PATCH] release: v1.5.0 --- CHANGELOG.md | 4 ++++ src/Pest.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e303587..ee5a3af9 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.5.0 (2021-06-15)](https://github.com/pestphp/pest/compare/v1.4.0...v1.5.0) +### Changed +- Moves plugins from the `require` section to the core itself ([#317](https://github.com/pestphp/pest/pull/317)), ([#318](https://github.com/pestphp/pest/pull/318)), ([#320](https://github.com/pestphp/pest/pull/320)) + ## [v1.4.0 (2021-06-10)](https://github.com/pestphp/pest/compare/v1.3.2...v1.4.0) ### Added - Support for multiple datasets (Matrix) on the `with` method ([#303](https://github.com/pestphp/pest/pull/303)) diff --git a/src/Pest.php b/src/Pest.php index 505d1ac6..759cb913 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ namespace Pest; function version(): string { - return '1.3.2'; + return '1.5.0'; } function testDirectory(string $file = ''): string