diff options
-rw-r--r-- | composer.json | 2 | ||||
-rw-r--r-- | php-yoast-phpunit-polyfills1.spec | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/composer.json b/composer.json index 74036a5..8bd6df2 100644 --- a/composer.json +++ b/composer.json @@ -32,7 +32,7 @@ "require-dev": { "php-parallel-lint/php-console-highlighter": "^1.0.0", "php-parallel-lint/php-parallel-lint": "^1.4.0", - "yoast/yoastcs": "^3.1.0" + "yoast/yoastcs": "^3.2.0" }, "minimum-stability": "dev", "prefer-stable": true, diff --git a/php-yoast-phpunit-polyfills1.spec b/php-yoast-phpunit-polyfills1.spec index cf01912..4745506 100644 --- a/php-yoast-phpunit-polyfills1.spec +++ b/php-yoast-phpunit-polyfills1.spec @@ -7,7 +7,7 @@ # Please preserve changelog entries # # Github -%global gh_commit e6faedf5e34cea4438e341f660e2f719760c531d +%global gh_commit 41aaac462fbd80feb8dd129e489f4bbc53fe26b0 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner Yoast %global gh_project PHPUnit-Polyfills @@ -23,7 +23,7 @@ %global php_home %{_datadir}/php Name: php-%{pk_vendor}-%{pk_project}1 -Version: 1.1.4 +Version: 1.1.5 Release: 1%{?dist} Summary: Set of polyfills for changed PHPUnit functionality, version 1 @@ -92,18 +92,15 @@ EOF : Run upstream test suite ret=0 -if [ -x %{_bindir}/phpunit7 ]; then - %{_bindir}/phpunit7 --no-coverage || ret=1 -fi if [ -x %{_bindir}/phpunit8 ]; then - for cmd in php php81 php82 php83; do + for cmd in php php81 php82 php83 php84 php85; do if which $cmd; then $cmd %{_bindir}/phpunit8 --no-coverage || ret=1 fi done fi if [ -x %{_bindir}/phpunit9 ]; then - for cmd in php php81 php82 php83 php84; do + for cmd in php php81 php82 php83 php84 php85; do if which $cmd; then $cmd %{_bindir}/phpunit9 --no-coverage || ret=1 fi @@ -122,6 +119,9 @@ exit $ret %changelog +* Tue Aug 12 2025 Remi Collet <remi@remirepo.net> - 1.1.5-1 +- update to 1.1.5 + * Mon Feb 10 2025 Remi Collet <remi@remirepo.net> - 1.1.4-1 - update to 1.1.4 |