2019-08-27 03:29:42 +00:00
|
|
|
#!/bin/sh -eu
|
|
|
|
old_version="$1"
|
|
|
|
new_version="$2"
|
2020-07-16 11:39:39 +00:00
|
|
|
|
|
|
|
if [ "$new_version" != "${new_version#v}" ]
|
|
|
|
then
|
|
|
|
echo "Error: The new version shouldn't be prefixed with a \"v\"." >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2019-12-31 15:28:50 +00:00
|
|
|
sed -i meson.build -e "s/^ version: .*#release_version/ version: '$new_version', #release_version/g"
|
2019-12-31 15:27:13 +00:00
|
|
|
|
|
|
|
printf "Minimum wlroots version? "
|
|
|
|
read wlr_version_min
|
|
|
|
printf "Maximum wlroots version? "
|
|
|
|
read wlr_version_max
|
|
|
|
|
|
|
|
sed -i meson.build -e "s/wlroots_version =.*/wlroots_version = ['>=$wlr_version_min', '<$wlr_version_max']/"
|
|
|
|
|
2019-08-27 03:29:42 +00:00
|
|
|
git add meson.build
|
|
|
|
git commit -m "Update version to $new_version"
|