From ff8bf7598299e1719df489c273989e18e46a6916 Mon Sep 17 00:00:00 2001 From: Tim Vahlbrock Date: Sat, 9 May 2026 21:58:04 +0200 Subject: [PATCH] make default version number the next minor release --- scripts/on-device-install/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/on-device-install/install.sh b/scripts/on-device-install/install.sh index f27f3dd..a3d5613 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.71.2} +VERSION=${VERSION:-0.73.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}