Set version to 0.25.1

This commit is contained in:
eikek
2021-07-29 22:53:43 +02:00
parent edd2881868
commit fe06cc1e6b
5 changed files with 33 additions and 4 deletions

29
project/change-version.sh Executable file
View File

@ -0,0 +1,29 @@
#!/usr/bin/env bash
set -e
cd "$(dirname $0)/.."
edit_version() {
file="$1"
old="$2"
new="$3"
sed -i "s/$old/$new/g" $file
}
current_version() {
cat "version.sbt" | head -n1 | cut -d'=' -f2 | xargs
}
curr="$(current_version)"
if [ -z "$1" ]; then
echo "No new version given!"
exit 1
fi
edit_version "version.sbt" "$curr" "$1"
edit_version "modules/restapi/src/main/resources/docspell-openapi.yml" "$curr" "$1"
edit_version "modules/joexapi/src/main/resources/joex-openapi.yml" "$curr" "$1"
edit_version "website/site/config.toml" "$curr" "$1"