diff options
author | Remi Collet <remi@remirepo.net> | 2025-08-12 06:42:26 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-08-12 06:42:26 +0200 |
commit | 3d6f66706d39ad919a2f6e6293219b30dd77daa1 (patch) | |
tree | 196b89f983dc65dc2ee0b33132117f12ef619027 | |
parent | ddfb8af9457cc753d25cad1f89ac3f2704471ab6 (diff) |
-rw-r--r-- | composer.json | 2 | ||||
-rw-r--r-- | php-yoast-phpunit-polyfills2.spec | 13 |
2 files changed, 9 insertions, 6 deletions
diff --git a/composer.json b/composer.json index def37d3..8a0adeb 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-polyfills2.spec b/php-yoast-phpunit-polyfills2.spec index 809b39c..434ceeb 100644 --- a/php-yoast-phpunit-polyfills2.spec +++ b/php-yoast-phpunit-polyfills2.spec @@ -7,7 +7,7 @@ # Please preserve changelog entries # # Github -%global gh_commit a0e3e9adecaa352697786cb29bb0f2fcc25f43f5 +%global gh_commit 1a6aecc9ebe4a9cea4e1047d0e6c496e52314c27 %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}%{major} -Version: 2.0.4 +Version: 2.0.5 Release: 1%{?dist} Summary: Set of polyfills for changed PHPUnit functionality, version %{major} @@ -93,21 +93,21 @@ EOF : Run upstream test suite ret=0 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 done fi if [ -x %{_bindir}/phpunit10 ]; then - for cmd in php php82 php83 php84; do + for cmd in php php82 php83 php84 php85; do if which $cmd; then $cmd %{_bindir}/phpunit10 --no-coverage || ret=1 fi @@ -126,6 +126,9 @@ exit $ret %changelog +* Tue Aug 12 2025 Remi Collet <remi@remirepo.net> - 2.0.5-1 +- update to 2.0.5 + * Mon Feb 10 2025 Remi Collet <remi@remirepo.net> - 2.0.4-1 - update to 2.0.4 |