From c6a2e3b4d0eb129ad8eab2d6c8603a5e6c68f12b Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Sun, 2 May 2021 23:41:59 +0100 Subject: [PATCH] chore: release 1.1.0 --- CHANGELOG.md | 4 ++++ src/Pest.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1cb37d8..ebf3c155 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.1.0 (2021-05-02)](https://github.com/pestphp/pest/compare/v1.0.5...v1.1.0) +### Added +- Possibility of "hooks" being added using the "uses" function ([#282](https://github.com/pestphp/pest/pull/282)) + ## [v1.0.5 (2021-03-31)](https://github.com/pestphp/pest/compare/v1.0.4...v1.0.5) ### Added - Add `--browse` option to `pest:dusk` command ([#280](https://github.com/pestphp/pest/pull/280)) diff --git a/src/Pest.php b/src/Pest.php index 6e63d622..cc7bca60 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,5 +6,5 @@ namespace Pest; function version(): string { - return '1.0.5'; + return '1.1.0'; }