Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ods/extensions/services/dashboard-api/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down
2 changes: 1 addition & 1 deletion ods/installers/lib/constants.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ods/installers/macos/lib/constants.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion ods/installers/phases/06-directories.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion ods/installers/windows/lib/constants.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions ods/manifest.json
Original file line number Diff line number Diff line change
@@ -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"
},
Expand Down
Loading