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

View File

@ -2,7 +2,7 @@ openapi: 3.0.0
info:
title: Docspell JOEX
version: 0.26.0-SNAPSHOT
version: 0.25.1
description: |
This is the remote API to the job executor component of Docspell.
Docspell is a free document management system focused on small

View File

@ -2,7 +2,7 @@ openapi: 3.0.0
info:
title: Docspell
version: 0.26.0-SNAPSHOT
version: 0.25.1
description: |
This is the remote API to Docspell. Docspell is a free document
management system focused on small groups or families.

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"

View File

@ -1 +1 @@
ThisBuild / version := "0.26.0-SNAPSHOT"
ThisBuild / version := "0.25.1"

View File

@ -26,4 +26,4 @@ skip_anchor_prefixes = [
[extra]
# Put all your custom variables here
version = "0.26.0-SNAPSHOT"
version = "0.25.1"