diff options
-rw-r--r-- | php-react-promise-stream.spec | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/php-react-promise-stream.spec b/php-react-promise-stream.spec index c548027..bce006c 100644 --- a/php-react-promise-stream.spec +++ b/php-react-promise-stream.spec @@ -2,7 +2,7 @@ # # Fedora spec file for php-react-promise-stream # -# Copyright (c) 2018-2019 Shawn Iwinski <shawn@iwin.ski> +# Copyright (c) 2018-2022 Shawn Iwinski <shawn@iwin.ski> # # License: MIT # http://opensource.org/licenses/MIT @@ -12,8 +12,8 @@ %global github_owner reactphp %global github_name promise-stream -%global github_version 1.3.0 -%global github_commit 3ebd94fe0d8edbf44937948af28d02d5437e9949 +%global github_version 1.4.0 +%global github_commit ef05517b99e4363beaa7993d4e2d6c50f1b22a09 %global composer_vendor react %global composer_project promise-stream @@ -160,9 +160,8 @@ BOOTSTRAP : Upstream tests RETURN_CODE=0 PHPUNIT=$(which phpunit9) -# TODO PHP 8 -for PHP_EXEC in "" php73 php74 php80 php81; do - if [ -z "$PHP_EXEC" ] || which $PHP_EXEC; then +for PHP_EXEC in php php74 php80 php81 php82; do + if which $PHP_EXEC; then $PHP_EXEC $PHPUNIT --verbose --bootstrap bootstrap.php \ || RETURN_CODE=1 fi @@ -182,6 +181,9 @@ exit $RETURN_CODE %changelog +* Mon Jun 20 2022 Remi Collet <remi@remirepo.net> - 1.4.0-1 +- update to 1.4.0 + * Thu Oct 21 2021 Remi Collet <remi@remirepo.net> - 1.3.0-1 - update to 1.3.0 - switch to phpunit9 |