Files
entropy/scripts/tag-version.sh
2010-02-04 19:25:28 +01:00

32 lines
884 B
Bash
Executable File

#!/bin/sh
# Check current dir
[[ ! -d ".git" ]] && echo "this script must be executed from git repo root" && exit 1
# Check target tag
[[ -z "$1" ]] && echo "usage: $0 <new-version>" && exit 1
# Validate new version
new_tag="$1"
for cur_tag in `git tag`; do
[[ "$cur_tag" == "$new_tag" ]] && echo "$new_tag already tagged" && exit 1
done
# Update ChangeLog
echo "Updating ChangeLog for $new_tag"
git log > docs/ChangeLog
git add docs/ChangeLog
for revision in client/revision server/revision sulfur/src/sulfur/revision libraries/entropy/revision; do
echo "$new_tag" > $revision
git add $revision
done
git commit -m "Tagging Entropy version $new_tag" docs/ChangeLog client/revision server/revision sulfur/src/sulfur/revision libraries/entropy/revision
# tag version
echo "Tagging version: $new_tag"
git tag $new_tag HEAD
# Push changes upstream
git push
git push --tags