diff options
-rw-r--r-- | composer.json | 2 | ||||
-rw-r--r-- | php-myclabs-php-enum.spec | 11 |
2 files changed, 8 insertions, 5 deletions
diff --git a/composer.json b/composer.json index 73caf14..924f924 100644 --- a/composer.json +++ b/composer.json @@ -28,6 +28,6 @@ "require-dev": { "phpunit/phpunit": "^9.5", "squizlabs/php_codesniffer": "1.*", - "vimeo/psalm": "^4.5.1" + "vimeo/psalm": "^4.6.2" } } diff --git a/php-myclabs-php-enum.spec b/php-myclabs-php-enum.spec index 128c3de..f72ab26 100644 --- a/php-myclabs-php-enum.spec +++ b/php-myclabs-php-enum.spec @@ -6,7 +6,7 @@ # # Please, preserve the changelog entries # -%global gh_commit 46cf3d8498b095bd33727b13fd5707263af99421 +%global gh_commit 55555d31a622b4bc9662664132a0533ae6ef47b1 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner myclabs %global gh_project php-enum @@ -20,7 +20,7 @@ %global with_tests 0%{!?_without_tests:1} Name: php-%{pk_vendor}-%{pk_project} -Version: 1.8.0 +Version: 1.8.1 Release: 1%{?dist} Summary: PHP Enum implementation @@ -40,7 +40,7 @@ BuildRequires: php-spl # From composer.json, "require-dev": { # "phpunit/phpunit": "^9.5", # "squizlabs/php_codesniffer": "1.*" -# "vimeo/psalm": "^4.5.1" +# "vimeo/psalm": "^4.6.2" %global phpunit %{_bindir}/phpunit9 BuildRequires: phpunit9 >= 9.5 # Required by autoloader @@ -99,7 +99,7 @@ require __DIR__ . '/bootstrap.php'; EOF ret=0 -for cmd in "php %{phpunit}" php73 php74 php80; do +for cmd in "php %{phpunit}" php73 php74 php80 php81; do if which $cmd; then set $cmd $1 ${2:-%{_bindir}/phpunit9} --verbose --bootstrap tests/autoload.php || ret=1 @@ -121,6 +121,9 @@ exit $ret %changelog +* Tue Jun 29 2021 Remi Collet <remi@remirepo.net> - 1.8.1-1 +- update to 1.8.1 + * Tue Feb 16 2021 Remi Collet <remi@remirepo.net> - 1.8.0-1 - update to 1.8.0 - raise dependency on PHP 7.3 |