From 1b6d392f38deac108c16ee175ea401162163e00c Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 10 Aug 2026 17:22:48 +0800 Subject: [PATCH] chore(version): bump fork version to 2.6.1-exp Differentiates this fork's build identifier from the upstream Osmantic/ODS release it tracks, given the experimental batch-ported PRs on this branch. Co-Authored-By: Claude Opus 4.8 --- ods/extensions/services/dashboard-api/main.py | 2 +- ods/installers/lib/constants.sh | 2 +- ods/installers/macos/lib/constants.sh | 2 +- ods/installers/phases/06-directories.sh | 2 +- ods/installers/windows/lib/constants.ps1 | 2 +- ods/manifest.json | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ods/extensions/services/dashboard-api/main.py b/ods/extensions/services/dashboard-api/main.py index 5fa064824..a8547995e 100644 --- a/ods/extensions/services/dashboard-api/main.py +++ b/ods/extensions/services/dashboard-api/main.py @@ -1055,7 +1055,7 @@ async def _lifespan(app: FastAPI): app = FastAPI( title="ODS Dashboard API", - version="2.6.0", + version="2.6.1-exp", description="System status API for ODS Dashboard", lifespan=_lifespan, ) diff --git a/ods/installers/lib/constants.sh b/ods/installers/lib/constants.sh index db6002266..fb8bd7706 100755 --- a/ods/installers/lib/constants.sh +++ b/ods/installers/lib/constants.sh @@ -14,7 +14,7 @@ # Change VERSION for custom builds. Add new color codes here. # ============================================================================ -VERSION="2.6.0" +VERSION="2.6.1-exp" SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)" # Source path utilities for cross-platform path resolution diff --git a/ods/installers/macos/lib/constants.sh b/ods/installers/macos/lib/constants.sh index 764db7a78..e323df2ab 100755 --- a/ods/installers/macos/lib/constants.sh +++ b/ods/installers/macos/lib/constants.sh @@ -11,7 +11,7 @@ # Change ODS_VERSION for custom builds. Must match constants.sh VERSION. # ============================================================================ -ODS_VERSION="2.6.0" +ODS_VERSION="2.6.1-exp" # Install location - use shared path resolution if available. # constants.sh lives at two different depths depending on layout: diff --git a/ods/installers/phases/06-directories.sh b/ods/installers/phases/06-directories.sh index 41c886936..e12f0d4ae 100755 --- a/ods/installers/phases/06-directories.sh +++ b/ods/installers/phases/06-directories.sh @@ -787,7 +787,7 @@ raise SystemExit(1)' 2>/dev/null && return 0 # Tier: ${TIER} (${TIER_NAME}) #=== ODS Version (used by ods-cli update for version-compat checks) === -ODS_VERSION=${VERSION:-2.6.0} +ODS_VERSION=${VERSION:-2.6.1-exp} #=== Network Binding === # 127.0.0.1 = localhost only (secure default) diff --git a/ods/installers/windows/lib/constants.ps1 b/ods/installers/windows/lib/constants.ps1 index 5fea4f1a1..403f95f72 100644 --- a/ods/installers/windows/lib/constants.ps1 +++ b/ods/installers/windows/lib/constants.ps1 @@ -10,7 +10,7 @@ # Change ODS_VERSION for custom builds. Must match constants.sh VERSION. # ============================================================================ -$script:ODS_VERSION = "2.6.0" +$script:ODS_VERSION = "2.6.1-exp" # Install location (override via $env:ODS_HOME) # NOTE: $(if ...) syntax required for PS 5.1 compatibility (bare if-as-expression is PS 7+ only) diff --git a/ods/manifest.json b/ods/manifest.json index b4e310fe3..5b2a9a029 100644 --- a/ods/manifest.json +++ b/ods/manifest.json @@ -1,10 +1,10 @@ { "schema_version": 2, - "ods_version": "2.6.0", + "ods_version": "2.6.1-exp", "min_compatible_ods_version": "1.0.0", "manifestVersion": "1.0.0", "release": { - "version": "2.6.0", + "version": "2.6.1-exp", "channel": "stable", "date": "2026-07-28" },