From bf366406f9a844d251bdf984bb3ae5e216766d48 Mon Sep 17 00:00:00 2001 From: Ximi1970 Date: Mon, 12 Feb 2024 13:04:05 +0100 Subject: [PATCH] Update version handling --- dist/rpm/VERSION | 4 ++-- dist/rpm/gnome/_service | 2 +- dist/rpm/kde/_service | 2 +- dist/rpm/minimal/_service | 2 +- update_version.sh | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dist/rpm/VERSION b/dist/rpm/VERSION index 9597f0e..8c0a46d 100644 --- a/dist/rpm/VERSION +++ b/dist/rpm/VERSION @@ -1,4 +1,4 @@ VERSION=0.9.8 -BUILD_NUMBER=1065 -GIT_HASH=75f5ddf45d98df37368f40fcfe572f799a823bd8 +BUILD_NUMBER=1066 +GIT_HASH=fd60403fca3284f533156660932eaa632d576269 GIT_BRANCH=release-0.9.8 diff --git a/dist/rpm/gnome/_service b/dist/rpm/gnome/_service index 16cffd9..f56678f 100644 --- a/dist/rpm/gnome/_service +++ b/dist/rpm/gnome/_service @@ -2,7 +2,7 @@ https://github.com/Ximi1970/systray-x.git git - 0.9.8 + release-0.9.8 0.9.8 systray-x-gnome dist/rpm/gnome/systray-x-gnome.changes diff --git a/dist/rpm/kde/_service b/dist/rpm/kde/_service index 98f3604..b99815b 100644 --- a/dist/rpm/kde/_service +++ b/dist/rpm/kde/_service @@ -2,7 +2,7 @@ https://github.com/Ximi1970/systray-x.git git - 0.9.8 + release-0.9.8 0.9.8 dist/rpm/kde/systray-x.changes dist/rpm/kde/systray-x.spec diff --git a/dist/rpm/minimal/_service b/dist/rpm/minimal/_service index 06605b0..60967da 100644 --- a/dist/rpm/minimal/_service +++ b/dist/rpm/minimal/_service @@ -2,7 +2,7 @@ https://github.com/Ximi1970/systray-x.git git - 0.9.8 + release-0.9.8 0.9.8 systray-x-minimal dist/rpm/minimal/systray-x-minimal.changes diff --git a/update_version.sh b/update_version.sh index c079ce6..dcbbea1 100755 --- a/update_version.sh +++ b/update_version.sh @@ -16,15 +16,15 @@ VERSION_MINOR=${VERSION_AR[1]} VERSION_BUILD=${VERSION_AR[2]} SERVICE_FILE="./dist/rpm/kde/_service" -sed -i -e "s?\(^.*\"revision\">\).*\(\)?\1$VERSION\2?" $SERVICE_FILE +sed -i -e "s?\(^.*\"revision\">\).*\(\)?\1release-$VERSION\2?" $SERVICE_FILE sed -i -e "s?\(^.*\"versionformat\">\).*\(\)?\1$VERSION\2?" $SERVICE_FILE SERVICE_FILE="./dist/rpm/gnome/_service" -sed -i -e "s?\(^.*\"revision\">\).*\(\)?\1$VERSION\2?" $SERVICE_FILE +sed -i -e "s?\(^.*\"revision\">\).*\(\)?\1release-$VERSION\2?" $SERVICE_FILE sed -i -e "s?\(^.*\"versionformat\">\).*\(\)?\1$VERSION\2?" $SERVICE_FILE SERVICE_FILE="./dist/rpm/minimal/_service" -sed -i -e "s?\(^.*\"revision\">\).*\(\)?\1$VERSION\2?" $SERVICE_FILE +sed -i -e "s?\(^.*\"revision\">\).*\(\)?\1release-$VERSION\2?" $SERVICE_FILE sed -i -e "s?\(^.*\"versionformat\">\).*\(\)?\1$VERSION\2?" $SERVICE_FILE