From 40e111b3a6485f886a45bede3edbb9efe91036a3 Mon Sep 17 00:00:00 2001 From: tracer Date: Fri, 13 Feb 2026 10:50:33 +0100 Subject: [PATCH] added version log in updater --- composer.json | 2 +- git_update.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index d6e4d94..cf2920d 100644 --- a/composer.json +++ b/composer.json @@ -98,5 +98,5 @@ "minimum-stability": "stable", "prefer-stable": true, "version": "26.0.2", - "build": "67" + "build": "68" } diff --git a/git_update.sh b/git_update.sh index 16ca8b8..f330d83 100755 --- a/git_update.sh +++ b/git_update.sh @@ -87,6 +87,7 @@ VERSION="$($PHP_BIN -r '$c=json_decode(file_get_contents("composer.json"), true) BUILD="$($PHP_BIN -r '$c=json_decode(file_get_contents("composer.json"), true); echo $c["build"] ?? "";')" if [[ -n "$VERSION" || -n "$BUILD" ]]; then + echo "Updating settings version/build (VERSION=$VERSION, BUILD=$BUILD)..." $PHP_BIN -r ' require "vendor/autoload.php"; $app = require "bootstrap/app.php";