From e71f8ceb653aeca7ce39d98bd7c2b98a152c3291 Mon Sep 17 00:00:00 2001 From: RaresKeY <158580472+RaresKeY@users.noreply.github.com> Date: Tue, 25 Aug 2026 10:26:18 +0100 Subject: [PATCH] chore(release): align dev version with 1.0.3 (#6168) Keep dev version metadata aligned with the current hotfix release while the rolling branch continues toward 1.1.0. Evidence: the canonical APP_VERSION imports as 1.0.3 and the diff check is clean. This commit changes version metadata only; it does not tag or publish a release. --- src/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.py b/src/constants.py index 584494290..28d47efa0 100644 --- a/src/constants.py +++ b/src/constants.py @@ -4,7 +4,7 @@ import os from src.runtime_paths import get_app_root, get_default_data_dir -APP_VERSION = "1.0.2" +APP_VERSION = "1.0.3" # Base paths BASE_DIR = os.path.join(get_app_root(), "")