chore: release 1.1.0

This commit is contained in:
Nuno Maduro
2021-05-02 23:41:59 +01:00
parent a10428efe6
commit c6a2e3b4d0
2 changed files with 5 additions and 1 deletions

View File

@ -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))

View File

@ -6,5 +6,5 @@ namespace Pest;
function version(): string
{
return '1.0.5';
return '1.1.0';
}