summaryrefslogtreecommitdiffstats
path: root/utils/set_version
diff options
context:
space:
mode:
Diffstat (limited to 'utils/set_version')
-rwxr-xr-xutils/set_version7
1 files changed, 5 insertions, 2 deletions
diff --git a/utils/set_version b/utils/set_version
index fcb081f..c42f6d6 100755
--- a/utils/set_version
+++ b/utils/set_version
@@ -35,9 +35,12 @@ case $conf in
echo " ** Updating src/version.h"
printf ",s/^#define VERSION \".*\"/#define VERSION \"${NEW_VERSION}\"/\nw\n" | ed src/version.h 2>/dev/null
+ echo " ** Updating redhat.spec"
+ printf ",s/^Version: .*/Version: ${NEW_VERSION}/\nw\n" | ed contrib/python-dmidecode.spec 2>/dev/null
+
echo
- echo " ** git add src/version.h"
- git add src/version.h
+ echo " ** git add src/version.h redhat.spec"
+ git add src/version.h contrib/python-dmidecode.spec
git diff --cached
echo
echo " REMEMBER to commit this change when you have validated the result"