From fb0eef4200bbb050b44ee3943447560d4e700eb3 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Thu, 13 May 2021 00:37:55 +0100 Subject: [PATCH] release: 1.2.0 --- CHANGELOG.md | 5 +++++ src/Pest.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebf3c155..6ac3262e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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.2.0 (2021-05-13)](https://github.com/pestphp/pest/compare/v1.1.0...v1.2.0) +### Added +- Adds JUnit / Infection support ([#291](https://github.com/pestphp/pest/pull/291)) +- `--test-directory` command line option ([#283](https://github.com/pestphp/pest/pull/283)) + ## [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)) diff --git a/src/Pest.php b/src/Pest.php index 3b187fd4..f3b5579a 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -6,7 +6,7 @@ namespace Pest; function version(): string { - return '1.1.0'; + return '1.2.0'; } function testDirectory(string $file = ''): string