2016-06-13 23:39:17 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2016-06-28 08:50:21 -04:00
|
|
|
# Use passed argument as new tag
|
2016-10-28 07:02:13 -04:00
|
|
|
if [ $# -eq 0 ]; then
|
|
|
|
version=$(git describe --tags --abbrev=0)
|
|
|
|
patch=${version##*.}
|
|
|
|
set -- "${version%.*}.$((patch+1))"
|
|
|
|
fi
|
|
|
|
|
|
|
|
git tag "$@" || exit 1
|
2016-06-28 08:50:21 -04:00
|
|
|
|
2016-06-13 23:39:17 -04:00
|
|
|
# shellcheck disable=SC2016
|
2016-10-29 13:49:00 -04:00
|
|
|
tag_curr=$(git describe --tags --abbrev=0)
|
|
|
|
tag_curr_patch="${tag_curr##*.}"
|
|
|
|
tag_prev="${tag_curr%.*}.$((tag_curr_patch-1))"
|
2016-06-13 23:39:17 -04:00
|
|
|
|
2016-06-28 09:24:23 -04:00
|
|
|
./version.sh "$tag_curr"
|
|
|
|
|
2016-06-28 10:21:53 -04:00
|
|
|
sed -r "s/${tag_prev}/${tag_curr}/g" -i \
|
|
|
|
README.md CMakeLists.txt \
|
2016-11-19 00:22:44 -05:00
|
|
|
contrib/polybar.aur/PKGBUILD contrib/polybar.aur/.SRCINFO \
|
|
|
|
contrib/polybar-git.aur/PKGBUILD contrib/polybar-git.aur/.SRCINFO
|
2016-06-28 10:21:53 -04:00
|
|
|
|
|
|
|
git add -u README.md CMakeLists.txt \
|
2016-11-19 00:22:44 -05:00
|
|
|
contrib/polybar.aur/PKGBUILD contrib/polybar.aur/.SRCINFO \
|
|
|
|
contrib/polybar-git.aur/PKGBUILD contrib/polybar-git.aur/.SRCINFO \
|
2016-06-28 10:21:53 -04:00
|
|
|
include/version.hpp
|
|
|
|
|
2016-06-13 23:39:17 -04:00
|
|
|
git commit -m "build: Bump version to ${tag_curr}"
|
2016-06-28 08:50:21 -04:00
|
|
|
|
|
|
|
# Recreate the tag to include the last commit
|
|
|
|
[ $# -eq 1 ] && git tag -f "$@"
|