chore: bump to v0.93.1

This commit is contained in:
Tobias Gesellchen
2026-05-24 17:49:17 +02:00
parent b9aa29b92c
commit 872a121cbd
12 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ set -eo pipefail
# Override via environment variable or the --version/-v flag:
# VERSION=0.92.0 curl -sSL .../install.sh | sh
# curl -sSL .../install.sh | sh -s -- --version 0.92.0
VERSION=${VERSION:-0.91.0}
VERSION=${VERSION:-0.93.1}
# Parse optional command-line arguments so the script can be invoked as:
# install.sh --version 0.92.0
+1 -1
View File
@@ -28,7 +28,7 @@ You can override defaults:
```bash
sudo \
VERSION=v0.91.0 \
VERSION=v0.93.1 \
HOSTNAME_FQDN=soundtouch.local \
HTTP_PORT=80 \
HTTPS_PORT=443 \
+4 -4
View File
@@ -10,7 +10,7 @@ set -euo pipefail
# Examples (override defaults via env vars):
#
# sudo \
# VERSION=v0.91.0 \
# VERSION=v0.93.1 \
# HOSTNAME_FQDN=soundtouch.local \
# HTTP_PORT=80 \
# HTTPS_PORT=443 \
@@ -18,7 +18,7 @@ set -euo pipefail
# bash install.sh
#
# Or with a version argument to perform an update:
# sudo bash install.sh v0.91.0
# sudo bash install.sh v0.93.1
#
# Notes:
# - This script downloads a release binary for your CPU (auto-detects armv7/arm64/amd64).
@@ -28,7 +28,7 @@ set -euo pipefail
# - Safe to re-run; it will update binary/config/unit and restart the service.
# ==============================================================================
VERSION="${1:-${VERSION:-v0.91.0}}"
VERSION="${1:-${VERSION:-v0.93.1}}"
# Normalize version prefix
if [[ ! "$VERSION" =~ ^v ]]; then
VERSION="v${VERSION}"
@@ -117,7 +117,7 @@ detect_arch_asset() {
download_url_for() {
local asset="$1"
# Release asset pattern used by you earlier:
# soundtouch-service-v0.91.0-linux-armv7
# soundtouch-service-v0.93.1-linux-armv7
echo "https://github.com/gesellix/Bose-SoundTouch/releases/download/${VERSION}/soundtouch-service-${VERSION}-${asset}"
}