Compare commits

...

12 Commits

Author SHA1 Message Date
5c56ad8772 release: v1.23.1 2023-07-12 20:42:47 +01:00
f05fbd4d34 chore: bumps phpunit 2023-07-12 20:42:08 +01:00
061c9de301 release: v1.23.0 2023-04-19 21:10:22 +01:00
cda82d6772 chore: bumps dependencies 2023-04-19 21:09:37 +01:00
9f6a882327 release: v1.22.6 2023-03-17 23:24:14 +00:00
fa7f930d50 chore: upgrades dependencies 2023-03-17 23:22:35 +00:00
84bc028796 chore: upgrades dependencies 2023-03-17 23:21:15 +00:00
7f0e83671b Merge pull request #690 from localheinz/fix/typo
Fix: Typo
2023-03-16 12:10:21 +00:00
5b9198dad9 Fix: Typo 2023-03-16 10:18:13 +01:00
a1a0f049cd release: v1.22.5 2023-03-03 10:16:59 +00:00
a7e231f64f chore: requires latest version of phpunit 2023-03-03 10:16:21 +00:00
1856c15e67 release: v1.22.4 2023-02-03 13:05:47 +00:00
4 changed files with 21 additions and 5 deletions

View File

@ -34,7 +34,7 @@ jobs:
tools: composer:v2
coverage: none
- name: Setup Problem Matches
- name: Setup Problem Matchers
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"

View File

@ -4,6 +4,22 @@ 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.23.0 (2023-04-19)](https://github.com/pestphp/pest/compare/v1.22.6...v1.23.0)
### Changed
- Bumps dependencies
## [v1.22.6 (2023-03-17)](https://github.com/pestphp/pest/compare/v1.22.5...v1.22.6)
### Changed
- Bumps dependencies
## [v1.22.5 (2023-03-03)](https://github.com/pestphp/pest/compare/v1.22.4...v1.22.5)
### Changed
- Bumps dependencies
## [v1.22.4 (2023-02-03)](https://github.com/pestphp/pest/compare/v1.22.3...v1.22.4)
### Changed
- Bumps dependencies
## [v1.22.3 (2022-12-07)](https://github.com/pestphp/pest/compare/v1.22.2...v1.22.3)
### Fixed
- Fixes ignoring datasets description on lazy datasets ([#612](https://github.com/pestphp/pest/pull/612))

View File

@ -18,9 +18,9 @@
],
"require": {
"php": "^7.3 || ^8.0",
"nunomaduro/collision": "^5.11.0|^6.3.0",
"nunomaduro/collision": "^5.11.0|^6.4.0",
"pestphp/pest-plugin": "^1.1.0",
"phpunit/phpunit": "^9.6.0"
"phpunit/phpunit": "^9.6.10"
},
"autoload": {
"psr-4": {
@ -46,7 +46,7 @@
"pestphp/pest-dev-tools": "^1.0.0",
"pestphp/pest-plugin-parallel": "^1.2.1"
},
"minimum-stability": "dev",
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,

View File

@ -6,7 +6,7 @@ namespace Pest;
function version(): string
{
return '1.22.3';
return '1.23.1';
}
function testDirectory(string $file = ''): string