krata/tools/bump.sh

108 lines
2.0 KiB
Bash
Raw Normal View History

2021-01-24 23:20:51 +01:00
#!/usr/bin/env bash
#
#
# 1. Bump latest version number to the following files:
2021-06-24 15:30:05 +02:00
#
# - _sass/jekyll-theme-chirpy.scss
# - _javascript/copyright
# - assets/js/dist/*.js (will be built by gulp later)
# - jekyll-theme-chirpy.gemspec
# - package.json
2021-04-12 07:15:14 +02:00
#
# 2. Then create a commit to automatically save the changes.
2021-04-12 07:15:14 +02:00
#
# Usage:
#
# Run on the default branch or hotfix branch
#
# Requires: Git, Gulp
2021-01-24 23:20:51 +01:00
set -eu
ASSETS=(
"_sass/jekyll-theme-chirpy.scss"
2021-04-19 08:51:45 +02:00
"_javascript/copyright"
2021-01-24 23:20:51 +01:00
)
GEM_SPEC="jekyll-theme-chirpy.gemspec"
2021-01-26 20:17:00 +01:00
NODE_META="package.json"
_check_src() {
if [[ ! -f $1 && ! -d $1 ]]; then
echo -e "Error: Missing file \"$1\"!\n"
exit -1
fi
}
check() {
if [[ -n $(git status . -s) ]]; then
echo "Error: Commit unstaged files first, and then run this tool againt."
exit -1
fi
for i in "${!ASSETS[@]}"; do
_check_src "${ASSETS[$i]}"
done
_check_src "$NODE_META"
_check_src "$GEM_SPEC"
}
_bump_assets() {
for i in "${!ASSETS[@]}"; do
2021-02-10 10:53:25 +01:00
sed -i "s/v[[:digit:]]\+\.[[:digit:]]\+\.[[:digit:]]\+/v$1/" "${ASSETS[$i]}"
2021-01-24 23:20:51 +01:00
done
gulp
}
_bump_gemspec() {
sed -i "s/[[:digit:]]\+\.[[:digit:]]\+\.[[:digit:]]\+/$1/" "$GEM_SPEC"
2021-01-26 20:17:00 +01:00
}
_bump_node() {
2021-01-26 20:17:00 +01:00
sed -i \
"s,[\"]version[\"]: [\"][[:digit:]]\+\.[[:digit:]]\+\.[[:digit:]]\+[\"],\"version\": \"$1\"," \
2021-01-26 20:17:00 +01:00
$NODE_META
2021-01-24 23:20:51 +01:00
}
bump() {
_bump_assets "$1"
_bump_gemspec "$1"
_bump_node "$1"
2021-01-24 23:20:51 +01:00
if [[ -n $(git status . -s) ]]; then
git add .
git commit -m "Bump version to $1"
fi
}
main() {
check
2021-01-24 23:20:51 +01:00
_latest_tag="$(git describe --tags $(git rev-list --tags --max-count=1))"
2021-01-24 23:20:51 +01:00
echo "Input a version number (hint: latest version is ${_latest_tag:1})"
read _version
if [[ $_version =~ ^[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]$ ]]; then
if git tag --list | egrep -q "^v$_version$"; then
echo "Error: version '$_version' already exists"
exit -1
fi
echo -e "Bump version to $_version\n"
bump "$_version"
2021-01-24 23:20:51 +01:00
else
2021-02-10 10:53:25 +01:00
2021-01-24 23:20:51 +01:00
echo "Error: Illegal version number: '$_version'"
fi
2021-01-24 23:20:51 +01:00
}
main