diff options
| author | Remi Collet <remi@remirepo.net> | 2026-05-25 06:58:56 +0200 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2026-05-25 06:58:56 +0200 |
| commit | 9f420645b58341b0302d410f896fb19199f5be4e (patch) | |
| tree | 5d0619a3f9c96c08d1421ff7b75a3733f1452888 | |
| parent | 4dcee155c3249e62d62c26ddd532718b04d4ba53 (diff) | |
update to 8.4.5v8.4
| -rwxr-xr-x | makesrc.sh | 20 | ||||
| -rw-r--r-- | redis-json.spec | 5 |
2 files changed, 24 insertions, 1 deletions
diff --git a/makesrc.sh b/makesrc.sh new file mode 100755 index 0000000..3054ed1 --- /dev/null +++ b/makesrc.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +NAME=$(basename $PWD) +OWNER=$(sed -n '/^%global gh_vend/{s/.* //;p}' $NAME.spec) +PROJECT=$(sed -n '/^%global gh_proj/{s/.* //;p}' $NAME.spec) +VERSION=$(sed -n '/^Version:/{s/.* //;p}' $NAME.spec) + +echo -e "\nCreate git snapshot\nName=$NAME, Owner=$OWNER, Project=$PROJECT, Version=$VERSION\n" + +echo "Cloning..." +rm -rf $PROJECT-$VERSION +git clone --branch v$VERSION --recursive https://github.com/$OWNER/$PROJECT.git $PROJECT-$VERSION + +echo "Archiving..." +tar czf $NAME-$VERSION.tgz --exclude-vcs $PROJECT-$VERSION + +echo "Cleaning..." +rm -rf $PROJECT-$VERSION + +echo "Done." diff --git a/redis-json.spec b/redis-json.spec index 0fbb67a..38b8370 100644 --- a/redis-json.spec +++ b/redis-json.spec @@ -19,7 +19,7 @@ %global archivename %{gh_proj}-%{version} Name: redis-json -Version: 8.4.4 +Version: 8.4.5 %forgemeta Release: 1%{?dist} Summary: JSON as native data type @@ -136,6 +136,9 @@ install -Dpm640 %{cfgname} %{buildroot}%{redis_modules_cfg}/%{cfgname %changelog +* Mon May 25 2026 Remi Collet <remi@remirepo.net> - 8.4.5-1 +- update to 8.4.5 + * Tue Apr 28 2026 Remi Collet <remi@remirepo.net> - 8.4.4-1 - update to 8.4.4 |
