From 486d9eceef1d767350af79ac2caa872a8dc34c8e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 30 Nov 2020 10:00:56 +0100 Subject: update to 1.1.2 (no change) --- composer.json | 2 +- php-sebastian-object-reflector.spec | 12 +++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 88caead..14b7c5c 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "require": { - "php": "^7.0" + "php": ">=7.0" }, "require-dev": { "phpunit/phpunit": "^6.0" diff --git a/php-sebastian-object-reflector.spec b/php-sebastian-object-reflector.spec index 9b19a2f..a2a5f91 100644 --- a/php-sebastian-object-reflector.spec +++ b/php-sebastian-object-reflector.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # %global bootstrap 0 -%global gh_commit 773f97c67f28de00d397be301821b06708fca0be +%global gh_commit 9b8772b9cbd456ab45d4a598d2dd1a1bced6363d %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sebastianbergmann %global gh_project object-reflector @@ -24,11 +24,10 @@ %endif Name: php-%{pk_vendor}-%{pk_project}%{major} -Version: 1.1.1 +Version: 1.1.2 Release: 1%{?dist} Summary: Allows reflection of object attributes -Group: Development/Libraries License: BSD URL: https://github.com/%{gh_owner}/%{gh_project} Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{name}-%{version}-%{gh_short}.tar.gz @@ -43,7 +42,7 @@ BuildRequires: phpunit6 %endif # from composer.json -# "php": "^7.0" +# "php": ">=7.0" Requires: php(language) >= 7.0 # from phpcompatinfo report for version 1.0.0 Requires: php-reflection @@ -84,7 +83,7 @@ EOF : Run upstream test suite ret=0 -for cmd in php70 php71 php; do +for cmd in php php72 php73 php74 php80; do if which $cmd; then %{_bindir}/php -d include_path=.:%{buildroot}%{_datadir}/php:%{_datadir}/php \ %{_bindir}/phpunit6 --verbose || ret=1 @@ -105,6 +104,9 @@ exit $ret %changelog +* Mon Nov 30 2020 Remi Collet - 1.1.2-1 +- update to 1.1.2 (no change) + * Wed Mar 29 2017 Remi Collet - 1.1.1-1 - Update to 1.1.1 -- cgit