diff options
author | Remi Collet <remi@remirepo.net> | 2024-03-21 13:51:41 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-03-21 13:51:41 +0100 |
commit | 7550df8f95da5f5960f7752e8a7fd27d7fa33500 (patch) | |
tree | 93fd39968b2b62de0ee7cd47066de1091abf698b | |
parent | 20ceb296eb650fc7f2e7836c58262945b38d4d49 (diff) |
update to 9.6.18
-rwxr-xr-x | makesrc.sh | 4 | ||||
-rw-r--r-- | phpunit9.spec | 11 |
2 files changed, 9 insertions, 6 deletions
@@ -17,11 +17,11 @@ else echo "Cloning..." rm -rf $PROJECT-$COMMIT - git clone --shallow-since=$DATE https://github.com/$OWNER/$PROJECT.git $PROJECT-$COMMIT || exit 1 + git clone https://github.com/$OWNER/$PROJECT.git $PROJECT-$COMMIT || exit 1 echo "Getting commit..." pushd $PROJECT-$COMMIT - git checkout $COMMIT || exit1 + git checkout $COMMIT || exit 1 cp composer.json ../composer.json popd diff --git a/phpunit9.spec b/phpunit9.spec index 90b0af3..3f7e469 100644 --- a/phpunit9.spec +++ b/phpunit9.spec @@ -12,8 +12,8 @@ # For compatibility with SCL %undefine __brp_mangle_shebangs -%global gh_commit 1a156980d78a6666721b7e8e8502fe210b587fcd -%global gh_date 2024-02-23 +%global gh_commit 32c2c2d6580b1d8ab3c10b1e9e4dc263cc69bb04 +%global gh_date 2024-03-21 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sebastianbergmann %global gh_project phpunit @@ -26,12 +26,12 @@ %global ver_major 9 %global ver_minor 6 -%global upstream_version 9.6.17 +%global upstream_version 9.6.18 #global upstream_prever dev Name: %{pk_project}%{ver_major} Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} -Release: 2%{?dist} +Release: 1%{?dist} Summary: The PHP Unit Testing framework version %{ver_major} License: BSD-3-Clause @@ -319,6 +319,9 @@ exit $ret %changelog +* Thu Mar 21 2024 Remi Collet <remi@remirepo.net> - 9.6.18-1 +- update to 9.6.18 + * Wed Mar 6 2024 Remi Collet <remi@remirepo.net> - 9.6.17-2 - improve --check-version for RPM |