diff options
author | Remi Collet <remi@remirepo.net> | 2025-09-23 09:28:26 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-09-23 09:28:26 +0200 |
commit | 7dac9cb256b10d487c3c650c8b97118698f31ee6 (patch) | |
tree | a45b4c127da8ce5ed4ce39d55920c6447cd991d8 | |
parent | 412fe4f0aa18c77147b960449a44743f0d1c2ba4 (diff) |
-rw-r--r-- | php-mock-phpunit2.spec | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/php-mock-phpunit2.spec b/php-mock-phpunit2.spec index c8b8a07..fee165b 100644 --- a/php-mock-phpunit2.spec +++ b/php-mock-phpunit2.spec @@ -6,16 +6,16 @@ # # Please, preserve the changelog entries # -%global gh_commit 498e5e25ee7824570332581304c2bb7e37d75e80 +%global gh_commit 29f90fe44a04105959d6ae835b10c9e0da2fcaa7 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) -%global gh_date 2025-03-19 +%global gh_date 2025-09-23 %global gh_owner php-mock %global gh_project php-mock-phpunit %global with_tests 0%{!?_without_tests:1} %global major 2 Name: php-mock-phpunit%{major} -Version: 2.13.0 +Version: 2.13.1 Release: 1%{?dist} Summary: Mock built-in PHP functions with PHPUnit. @@ -109,7 +109,7 @@ ret=0 if [ -x %{_bindir}/phpunit8 ]; then : Run upstream test suite with phpunit8 -for cmd in php php81 php82 php82 php84; do +for cmd in php php81 php82 php82 php84 php85; do if which $cmd; then $cmd %{_bindir}/phpunit8 --verbose || ret=1 fi @@ -118,7 +118,7 @@ fi if [ -x %{_bindir}/phpunit9 ]; then : Run upstream test suite with phpunit9 -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 --verbose || ret=1 fi @@ -127,7 +127,7 @@ fi if [ -x %{_bindir}/phpunit10 ]; then : Run upstream test suite with phpunit10 -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}/phpunit10 \ --filter '^((?!(testPreserveArgumentDefaultValue)).)*$' \ @@ -138,7 +138,7 @@ fi if [ -x %{_bindir}/phpunit11 ]; then : Run upstream test suite with phpunit11 -for cmd in php php82 php83 php84; do +for cmd in php php82 php83 php84 php85; do if which $cmd; then $cmd %{_bindir}/phpunit11 \ --filter '^((?!(testPreserveArgumentDefaultValue)).)*$' \ @@ -149,7 +149,7 @@ fi if [ -x %{_bindir}/phpunit12 ]; then : Run upstream test suite with phpunit11 -for cmd in php php83 php84; do +for cmd in php php83 php84 php85; do if which $cmd; then $cmd %{_bindir}/phpunit12 \ --filter '^((?!(testPreserveArgumentDefaultValue)).)*$' \ @@ -171,6 +171,9 @@ exit $ret %changelog +* Tue Sep 23 2025 Remi Collet <remi@remirepo.net> - 2.13.1-1 +- update to 2.13.1 + * Thu Mar 20 2025 Remi Collet <remi@remirepo.net> - 2.13.0-1 - update to 2.13.0 |