diff --git a/examples/navigation-station-demo/go.mod b/examples/navigation-station-demo/go.mod index e5d309d..f9af622 100644 --- a/examples/navigation-station-demo/go.mod +++ b/examples/navigation-station-demo/go.mod @@ -2,7 +2,7 @@ module navigation-station-demo go 1.26.3 -require github.com/gesellix/bose-soundtouch v0.89.0 +require github.com/gesellix/bose-soundtouch v0.91.0 require github.com/gorilla/websocket v1.5.3 // indirect diff --git a/examples/preset-management/go.mod b/examples/preset-management/go.mod index 6babed2..bc640f3 100644 --- a/examples/preset-management/go.mod +++ b/examples/preset-management/go.mod @@ -2,7 +2,7 @@ module preset-management-example go 1.26.3 -require github.com/gesellix/bose-soundtouch v0.89.0 +require github.com/gesellix/bose-soundtouch v0.91.0 require github.com/gorilla/websocket v1.5.3 // indirect diff --git a/scripts/on-device-install/install.sh b/scripts/on-device-install/install.sh index 5b8d0e2..329d087 100644 --- a/scripts/on-device-install/install.sh +++ b/scripts/on-device-install/install.sh @@ -1,7 +1,7 @@ #!/bin/bash set -eo pipefail -VERSION=${VERSION:-0.89.0} +VERSION=${VERSION:-0.91.0} GH_REPO=${GH_REPO:-gesellix/Bose-SoundTouch} BINARY_URL=${BINARY_URL:-https://github.com/$GH_REPO/releases/download/v$VERSION/soundtouch-service-v$VERSION-linux-armv7} INIT_SCRIPT_URL=${INIT_SCRIPT_URL:-https://raw.githubusercontent.com/$GH_REPO/v$VERSION/scripts/on-device-install/aftertouch} diff --git a/scripts/raspberry-pi/README.md b/scripts/raspberry-pi/README.md index de420d6..0fb63cb 100644 --- a/scripts/raspberry-pi/README.md +++ b/scripts/raspberry-pi/README.md @@ -28,7 +28,7 @@ You can override defaults: ```bash sudo \ - VERSION=v0.89.0 \ + VERSION=v0.91.0 \ HOSTNAME_FQDN=soundtouch.local \ HTTP_PORT=80 \ HTTPS_PORT=443 \ diff --git a/scripts/raspberry-pi/install.sh b/scripts/raspberry-pi/install.sh index 1dd1ef3..b964d2f 100644 --- a/scripts/raspberry-pi/install.sh +++ b/scripts/raspberry-pi/install.sh @@ -10,7 +10,7 @@ set -euo pipefail # Examples (override defaults via env vars): # # sudo \ -# VERSION=v0.88.0 \ +# VERSION=v0.91.0 \ # 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.89.0 +# sudo bash install.sh v0.91.0 # # 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.89.0}}" +VERSION="${1:-${VERSION:-v0.91.0}}" # 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.89.0-linux-armv7 + # soundtouch-service-v0.91.0-linux-armv7 echo "https://github.com/gesellix/Bose-SoundTouch/releases/download/${VERSION}/soundtouch-service-${VERSION}-${asset}" }