mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-03-26 09:05:06 +00:00
Set version to 0.25.1
This commit is contained in:
parent
edd2881868
commit
fe06cc1e6b
@ -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
|
||||
|
@ -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
29
project/change-version.sh
Executable 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"
|
@ -1 +1 @@
|
||||
ThisBuild / version := "0.26.0-SNAPSHOT"
|
||||
ThisBuild / version := "0.25.1"
|
||||
|
@ -26,4 +26,4 @@ skip_anchor_prefixes = [
|
||||
|
||||
[extra]
|
||||
# Put all your custom variables here
|
||||
version = "0.26.0-SNAPSHOT"
|
||||
version = "0.25.1"
|
||||
|
Loading…
x
Reference in New Issue
Block a user